@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #000000;
    --bg-secondary: #0d0d0d;
    --bg-card: #111111;
    --bg-hover: #1a1a1a;
    --bg-glass: rgba(17, 17, 17, 0.8);
    --bg-ultra-glass: rgba(255, 255, 255, 0.02);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --neon-cyan: #00ffff;
    --neon-green: #39ff14;
    --neon-purple: #bc13fe;
    --neon-pink: #ff007f;
    --neon-blue: #0080ff;
    --neon-orange: #ff6600;
    --neon-gold: #ffd700;
    --neon-yellow: #ffff00;
    --border-color: #333333;
    --border-glow: rgba(0, 255, 255, 0.3);
    --border-neon: linear-gradient(45deg, #00ffff, #00ffff88, #00ffff44, #00ffff66);
    --gradient-primary: linear-gradient(135deg, #00ffff22 0%, #0d0d0d 100%);
    --gradient-secondary: linear-gradient(135deg, #0d0d0d 0%, #00ffff11 100%);
    --gradient-gold: linear-gradient(135deg, #00ffff11 0%, #0d0d0d 100%);
    --gradient-warning: linear-gradient(135deg, #00ffff22 0%, #0d0d0d 100%);
    --gradient-neon: linear-gradient(135deg, #00ffff22 0%, #0d0d0d 50%, #00ffff11 100%);
    --gradient-aurora: radial-gradient(ellipse at top, #00ffff08 0%, transparent 50%), radial-gradient(ellipse at bottom left, #0d0d0d66 0%, transparent 50%), radial-gradient(ellipse at bottom right, #00ffff04 0%, transparent 50%), radial-gradient(ellipse at top right, #0d0d0d33 0%, transparent 50%);
    --gradient-mesh: radial-gradient(at 20% 30%, #00ffff04 0px, transparent 60%), radial-gradient(at 80% 20%, #0d0d0d44 0px, transparent 60%), radial-gradient(at 40% 70%, #00ffff02 0px, transparent 60%), radial-gradient(at 90% 80%, #0d0d0d22 0px, transparent 60%), radial-gradient(at 10% 90%, #00ffff03 0px, transparent 60%);
    --gradient-holographic: conic-gradient(from 0deg at 50% 50%, #00ffff22, #0d0d0d, #00ffff11, #0d0d0d, #00ffff22);
    --shadow-light: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 12px 50px rgba(0, 0, 0, 0.5);
    --shadow-heavy: 0 25px 80px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(0, 255, 255, 0.4);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.2), 0 0 60px rgba(0, 255, 255, 0.1);
    --shadow-ultra: 0 0 50px rgba(0, 255, 255, 0.8), 0 0 100px rgba(0, 255, 255, 0.3), 0 0 150px rgba(0, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: var(--gradient-aurora), var(--gradient-mesh);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    padding-top: 70px;
}

/* Enhanced Background Particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 255, 0.1), transparent),
                      radial-gradient(2px 2px at 40px 70px, rgba(0, 255, 255, 0.05), transparent),
                      radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 255, 0.08), transparent),
                      radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 255, 0.03), transparent),
                      radial-gradient(2px 2px at 160px 30px, rgba(0, 255, 255, 0.06), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    pointer-events: none;
    z-index: -15;
    animation: particleFloat 20s ease-in-out infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--gradient-holographic);
    opacity: 0.02;
    pointer-events: none;
    z-index: -20;
    animation: subtleShift 20s ease-in-out infinite alternate;
}

@keyframes subtleShift {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.02); filter: brightness(1.1); }
    100% { transform: scale(1); filter: brightness(1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.75rem 0;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar .logo:hover {
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan);
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
}

.navbar .nav-links a:hover {
    color: var(--neon-cyan);
    background: var(--bg-hover);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.navbar .nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    background: var(--bg-hover);
    position: relative;
}

.navbar .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--neon-cyan);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--bg-hover);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Header Styles */
header {
    background: linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
    text-align: center;
    border-bottom: 1px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 -1px 0 var(--neon-cyan);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(0, 255, 255, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(13, 13, 13, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M10 10 L90 10 M50 10 L50 90 M10 90 L90 90 M10 50 L90 50" fill="none" stroke="rgba(0,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="2" fill="rgba(0,255,255,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(0,255,255,0.05)"/><circle cx="90" cy="10" r="1" fill="rgba(0,255,255,0.05)"/><circle cx="10" cy="90" r="1" fill="rgba(0,255,255,0.05)"/><circle cx="90" cy="90" r="1" fill="rgba(0,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circuit)"/></svg>');
    opacity: 0.2;
    animation: circuitPulse 8s ease-in-out infinite alternate;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(0deg, rgba(0, 255, 255, 0.02) 0%, transparent 30%),
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.03) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.02) 100%);
    animation: scanLines 6s ease-in-out infinite;
}

@keyframes circuitPulse {
    0% { 
        opacity: 0.1; 
        transform: scale(1);
    }
    100% { 
        opacity: 0.3; 
        transform: scale(1.005);
    }
}

@keyframes scanLines {
    0% { 
        transform: translateY(-20px);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(0px);
        opacity: 1;
    }
    100% { 
        transform: translateY(20px);
        opacity: 0.5;
    }
}

header .container {
    position: relative;
    z-index: 3;
}

.main-content {
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--neon-cyan);
    letter-spacing: -0.03em;
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), 0 0 60px var(--neon-cyan);
    animation: textGlow 4s ease-in-out infinite alternate;
    position: relative;
}

@keyframes textGlow {
    0% { 
        text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), 0 0 60px var(--neon-cyan);
    }
    100% { 
        text-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-cyan), 0 0 90px var(--neon-cyan), 0 0 120px rgba(0, 255, 255, 0.5);
    }
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    position: relative;
    letter-spacing: -0.01em;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Showroom specific h2 styling */
.main-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.main-content h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

p, li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 1rem;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Content Container Styles */
.content-container {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-glow);
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), transparent, rgba(0, 255, 255, 0.05));
    border-radius: 20px;
    opacity: 0.3;
    animation: subtleShimmer 4s ease-in-out infinite alternate;
}

@keyframes subtleShimmer {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

.content-container p,
.content-container ul {
    position: relative;
    z-index: 2;
}

/* Product/Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    padding: 2rem;
    border-radius: 24px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(0, 255, 255, 0.05) 25%, 
        transparent 26%, 
        transparent 74%, 
        rgba(0, 255, 255, 0.05) 75%, 
        rgba(0, 255, 255, 0.1) 100%);
    border-radius: 24px;
    animation: subtlePulse 3s ease-in-out infinite alternate;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--bg-ultra-glass);
    border-radius: 22px;
    z-index: -1;
}

@keyframes subtlePulse {
    0% { 
        opacity: 0.3;
        box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1);
    }
    100% { 
        opacity: 0.7;
        box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.2);
    }
}

.value-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: var(--shadow-neon);
}

.value-card:hover::before {
    animation-duration: 1.5s;
    box-shadow: inset 0 0 40px rgba(0, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="tech-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,255,255,0.1)"/><path d="M0 10 L20 10 M10 0 L10 20" stroke="rgba(0,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23tech-pattern)"/></svg>');
    opacity: 0.3;
}

.product-image .icon {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.value-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-cyan);
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.product-button:hover::before {
    left: 100%;
}

.product-button:active {
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid var(--neon-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-bottom: 3px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improved button styles */
.product-button,
.nft-btn {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-glow);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--neon-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.modal-title {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.modal-message {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-ultra-glass);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-ultra-glass);
    border-radius: 16px;
    border: 1px solid var(--border-glow);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 2rem;
    padding: 1rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.contact-details h3 {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.contact-details p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-cyan);
}

.faq-question {
    width: 100%;
    background: var(--bg-ultra-glass);
    border: none;
    padding: 1.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-cyan);
    background: var(--bg-hover);
}

.faq-toggle {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-secondary);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Mobile Responsiveness for Contact */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        align-self: center;
    }
}

/* NFT Showroom Specific Styles */
.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.nft-card {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.nft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, transparent 50%, rgba(0, 255, 255, 0.1) 100%);
    border-radius: 24px;
    padding: 1px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: source-out;
    opacity: 0.7;
    animation: subtleBorderGlow 4s ease-in-out infinite alternate;
}

@keyframes subtleBorderGlow {
    0% { 
        opacity: 0.5;
        transform: scale(1);
    }
    100% { 
        opacity: 0.9;
        transform: scale(1.001);
    }
}

.nft-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-ultra);
}

.nft-card:hover::before {
    opacity: 1;
    animation-duration: 2s;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, transparent 50%, rgba(0, 255, 255, 0.2) 100%);
}

.nft-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s ease;
}

.nft-card:hover .nft-image img {
    transform: scale(1.05);
}

.nft-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 255, 0.03) 0%, transparent 40%),
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.02) 50%, transparent 70%);
    animation: subtleShimmer 8s ease-in-out infinite alternate;
}

@keyframes subtleShimmer {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.nft-image .icon {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.nft-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.nft-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nft-artist {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.nft-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nft-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.nft-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-gold);
    text-shadow: 0 0 10px var(--neon-gold);
}

.nft-rarity {
    font-size: 0.9rem;
    color: var(--neon-purple);
    text-shadow: 0 0 5px var(--neon-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(188, 19, 254, 0.1);
    border: 1px solid rgba(188, 19, 254, 0.3);
}

.nft-actions {
    display: flex;
    gap: 1rem;
}

.nft-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.nft-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.nft-btn.secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.nft-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nft-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.nft-btn:hover::before {
    left: 100%;
}

.collection-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-card {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-glow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
    margin: 5rem 0;
    border-top: 1px solid var(--neon-cyan);
    border-bottom: 1px solid var(--neon-cyan);
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-aurora);
    opacity: 0.3;
}

.featured-section .container {
    position: relative;
    z-index: 2;
}

/* Special Info Boxes */
.highlight {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-neon);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: source-out;
    animation: borderPulse 3s ease-in-out infinite alternate;
}

.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.02;
    z-index: -1;
    border-radius: 20px;
}

@keyframes borderPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.highlight p {
    margin-bottom: 1rem;
}

.highlight p:last-child {
    margin-bottom: 0;
}

.contact-info {
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-glow);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-neon);
    opacity: 0.03;
    z-index: -1;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info strong {
    color: var(--text-primary);
}

/* Impressum specific boxes */
.contact-box {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-neon);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: source-out;
    animation: borderPulse 3s ease-in-out infinite alternate;
}

.contact-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.02;
    z-index: -1;
    border-radius: 20px;
}

.contact-box p {
    margin-bottom: 1rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.important-info {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.important-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--neon-cyan), rgba(0, 255, 255, 0.3));
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: source-out;
    animation: borderPulse 4s ease-in-out infinite alternate;
}

.important-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.02;
    z-index: -1;
    border-radius: 20px;
}

.important-info p {
    margin-bottom: 1rem;
}

.important-info p:last-child {
    margin-bottom: 0;
}

.legal-info {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.legal-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-warning);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: source-out;
    animation: borderPulse 5s ease-in-out infinite alternate;
}

.legal-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-warning);
    opacity: 0.03;
    z-index: -1;
    border-radius: 20px;
}

.legal-info p,
.legal-info ul {
    position: relative;
    z-index: 2;
}

.legal-info p {
    margin-bottom: 1rem;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

/* Services List */
.services-list {
    list-style: none;
    margin: 2rem 0;
}

.services-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 5px var(--neon-green);
}

.services-list li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Bio Container */
.bio-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.bio-container .content-container {
    margin-bottom: 3rem;
}

.bio-container h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.bio-container h2::after {
    left: 0;
    transform: none;
    width: 60px;
    height: 2px;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.footer-links a:hover {
    background: var(--bg-hover);
    transform: translateY(-2px);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -10;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.02) 0%, rgba(0, 255, 255, 0.01) 100%);
    opacity: 0.02;
    animation: darkFloat 35s infinite ease-in-out;
    filter: blur(60px);
}

.floating-elements::before {
    top: 5%;
    left: 2%;
    animation-delay: 0s;
    animation-duration: 40s;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.02) 0%, rgba(13, 13, 13, 0.2) 100%);
}

.floating-elements::after {
    bottom: 5%;
    right: 2%;
    animation-delay: 20s;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.2) 0%, rgba(0, 255, 255, 0.01) 100%);
    animation-duration: 45s;
}

@keyframes darkFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        filter: blur(60px);
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.1); 
        filter: blur(80px);
    }
    50% { 
        transform: translateY(-15px) translateX(-25px) scale(0.9); 
        filter: blur(70px);
    }
    75% { 
        transform: translateY(25px) translateX(15px) scale(1.05); 
        filter: blur(65px);
    }
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -10;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.01) 0%, rgba(13, 13, 13, 0.1) 100%);
    opacity: 0.02;
    animation: particleFloat 25s infinite ease-in-out;
    filter: blur(30px);
}

.floating-particles::before {
    top: 30%;
    left: 80%;
    animation-delay: 10s;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.1) 0%, rgba(0, 255, 255, 0.01) 100%);
}

.floating-particles::after {
    bottom: 40%;
    left: 10%;
    animation-delay: 30s;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.01), rgba(13, 13, 13, 0.1));
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.02;
    }
    50% { 
        transform: translateY(-100px) translateX(50px) scale(1.5); 
        opacity: 0.05;
    }
}

/* Enhanced Mobile Optimization */
@media (max-width: 1200px) {
    .navbar .nav-links {
        gap: 1.2rem;
    }
    
    .navbar .nav-links a {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
    
    .navbar .logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .nft-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .navbar .nav-links {
        gap: 1rem;
    }
    
    .navbar .nav-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }
    
    .section {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--neon-cyan);
        border-top: 1px solid rgba(0, 255, 255, 0.2);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
    
    .navbar .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    .navbar .nav-links a {
        padding: 1rem 2rem;
        border-radius: 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .navbar .nav-links a:hover {
        background: rgba(0, 255, 255, 0.1);
        padding-left: 2.5rem;
    }
    
    .navbar .nav-links a:last-child {
        border-bottom: none;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    header {
        padding: 3rem 0 2.5rem;
    }
    
    .main-content {
        padding: 2.5rem 0;
    }
    
    .section {
        padding: 2.5rem 0;
        margin-bottom: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
    }
    
    .nft-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 1.75rem;
        border-radius: 12px;
    }
    
    .content-container {
        padding: 1.75rem;
        margin: 1rem 0;
        border-radius: 16px;
    }
    
    .contact-info {
        padding: 1.75rem;
        margin-top: 1.5rem;
        border-radius: 16px;
    }
    
    .contact-box,
    .important-info,
    .legal-info {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 10px;
    }
    
    .highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .services-list li {
        padding: 0.75rem 0;
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    h2::after {
        width: 40px;
        height: 2px;
    }
    
    ul, ol {
        margin-left: 1.5rem;
    }
    
    .collection-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .navbar .logo {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    header {
        padding: 2.5rem 0 2rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .content-container {
        padding: 1.5rem;
        margin: 0.75rem 0;
        border-radius: 12px;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 12px;
    }
    
    .contact-box,
    .important-info,
    .legal-info {
        padding: 1.25rem;
        margin: 1.25rem 0;
        border-radius: 8px;
    }
    
    .highlight {
        padding: 1.25rem;
        margin: 1.25rem 0;
        border-radius: 8px;
    }
    
    .nft-content {
        padding: 1.5rem;
    }
    
    .nft-actions {
        flex-direction: column;
    }
    
    .collection-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    p, li {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
    
    h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    ul, ol {
        margin-left: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-links a {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .services-list li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .team-section {
        padding: 2rem 0;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    header {
        padding: 2rem 0 1.5rem;
    }
    
    .main-content {
        padding: 1.5rem 0;
    }
    
    .section {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .value-card {
        padding: 1.25rem;
    }
    
    .content-container {
        padding: 1.25rem;
        margin: 0.5rem 0;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    .contact-box,
    .important-info,
    .legal-info {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .highlight {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .nft-content {
        padding: 1.25rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    ul, ol {
        margin-left: 1rem;
    }
    
    p, li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .value-card:hover {
        transform: none;
        box-shadow: var(--shadow-light);
    }
    
    .value-card:hover::after {
        opacity: 0;
    }
    
    .nft-card:hover {
        transform: none;
        box-shadow: var(--shadow-light);
    }
    
    .nft-card:active {
        transform: scale(0.98);
        box-shadow: var(--shadow-glow);
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-links a:active {
        transform: scale(0.95);
    }
    
    .value-card {
        transition: box-shadow 0.2s ease;
    }
    
    .value-card:active {
        transform: scale(0.98);
        box-shadow: var(--shadow-glow);
    }
    
    /* Disable heavy animations on mobile */
    .floating-elements::before,
    .floating-elements::after {
        animation-duration: 60s;
        opacity: 0.01;
    }
    
    header::before {
        animation: none;
    }
    
    header::after {
        animation: none;
    }
}

/* Social Media Container Styles */
.social-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.social-card {
    background: var(--bg-ultra-glass);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 2px solid var(--border-glow);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), transparent, rgba(0, 255, 255, 0.05));
    border-radius: 20px;
    opacity: 0.3;
    animation: subtleShimmer 4s ease-in-out infinite alternate;
}

.social-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-cyan);
}

.social-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-hover);
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.social-content {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.social-content h3 {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.social-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.social-link:hover::before {
    left: 100%;
}

/* Mobile responsiveness for social card */
@media (max-width: 600px) {
    .social-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .social-content h3 {
        font-size: 1.2rem;
    }
    
    .social-content p {
        font-size: 0.85rem;
    }
}

/* Improved readability for small screens */
@media (max-width: 600px) {
    .highlight p,
    .contact-info p,
    .contact-box p,
    .important-info p,
    .legal-info p {
        text-align: left;
    }
    
    strong {
        display: inline-block;
        margin-top: 0.5rem;
    }
    
    .legal-info ul li {
        margin-bottom: 0.75rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 896px) and (orientation: landscape) and (max-height: 500px) {
    header {
        padding: 2rem 0 1.5rem;
    }
    
    .section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .main-content {
        padding: 1.5rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}