/* ========================================
   CRYPTOCREATELABS PROFESSIONAL WEBSITE
   Enhanced Version with Auto-Hide Navbar
   (UPDATED: capped navbar height, big logo, no hero overlap)
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
   :root {
    /* Brand Colors */
    --color-cyan: #00D4FF;
    --color-purple: #9D4EDD;
    --color-pink: #FF006E;
    --color-blue: #3A0CA3;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00D4FF 0%, #9D4EDD 50%, #FF006E 100%);
    --gradient-secondary: linear-gradient(135deg, #9D4EDD 0%, #FF006E 100%);
    --gradient-accent: linear-gradient(135deg, #3A0CA3 0%, #9D4EDD 100%);

    /* Dark Theme */
    --color-bg-dark: #0A0A0F;
    --color-bg-secondary: #13131A;
    --color-bg-tertiary: #1A1A25;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B8B8C8;
    --color-border: rgba(157, 78, 221, 0.2);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(157, 78, 221, 0.3);

    /* ========================================
       NEW: NAVBAR SIZE CONTROL
       ======================================== */
    --nav-height: 110px;          /* normal navbar height cap */
    --nav-height-scrolled: 86px;  /* compact navbar height cap */
    --logo-scale: 1.18;           /* visual scale (does NOT affect layout) */
    --logo-scale-scrolled: 1.05;  /* visual scale when scrolled */
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;

    /* NEW: prevent fixed navbar overlap site-wide */
    padding-top: var(--nav-height);
}

/* NEW: when your JS toggles body.nav-scrolled, spacing stays perfect */
body.nav-scrolled {
    padding-top: var(--nav-height-scrolled);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;

    /* NEW: anchor jumps account for navbar */
    scroll-margin-top: var(--nav-height);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   ENHANCED NAVIGATION - AUTO HIDE (UPDATED)
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;

    /* UPDATED: cap navbar height and remove size-changing padding */
    height: var(--nav-height);
    padding: 0;
    display: flex;
    align-items: center;
    overflow: visible;

    transition: transform 0.3s ease, background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
}

/* Hide navbar on scroll down */
.navbar.navbar-hidden {
    transform: translateY(-100%);
}

/* Show navbar on scroll up */
.navbar.navbar-visible {
    transform: translateY(0);
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Compact navbar when scrolled (UPDATED: use height instead of padding) */
.navbar.scrolled {
    height: var(--nav-height-scrolled);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* NEW: keep items centered within capped height */
    height: 100%;
}

/* Logo sizing and alignment (UPDATED) */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: visible;
}

.logo:hover {
    transform: scale(1.05);
}

/*
  IMPORTANT CHANGE:
  - The old 200x140 forced the navbar tall.
  - We now size the logo to fit the capped navbar height (layout),
    then scale it visually (doesn't affect layout height).
*/
.logo-img {
    height: calc(var(--nav-height) - 18px);
    width: auto;
    object-fit: contain;

    transform-origin: left center;
    transform: scale(var(--logo-scale));

    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.5));
    transition: transform 0.3s ease, height 0.3s ease, filter 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: calc(var(--nav-height-scrolled) - 14px);
    transform: scale(var(--logo-scale-scrolled));
}

/* Logo text removed - logo only */
.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: white !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION - FIXED SPACING (UPDATED)
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    /* UPDATED: body padding handles navbar offset */
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-cyan) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
    top: 40%;
    right: -350px;
    animation-delay: 5s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-pink) 0%, transparent 70%);
    bottom: -150px;
    left: 40%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: var(--font-secondary);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-purple);
}

.btn-secondary:hover {
    background: var(--color-purple);
    border-color: var(--color-purple);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    background: var(--color-bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-purple);
    box-shadow: var(--shadow-glow);
}

.service-card.featured {
    border: 2px solid var(--color-purple);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: white;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-cyan);
    font-weight: bold;
}

/* ========================================
   DOWNLOADS
   ======================================== */
.downloads {
    background: var(--color-bg-dark);
}

.downloads-content {
    text-align: center;
}

.coming-soon-box {
    max-width: 700px;
    margin: 3rem auto;
    background: var(--color-bg-tertiary);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
}

.coming-soon-icon {
    margin-bottom: 2rem;
}

.coming-soon-icon svg {
    color: var(--color-purple);
    opacity: 0.6;
}

.coming-soon-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-description {
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.notify-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.notify-input:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
}

/* ========================================
   PROJECTS
   ======================================== */
.projects {
    background: var(--color-bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-purple);
    box-shadow: var(--shadow-glow);
}

.project-card.spotlight {
    border: 2px solid var(--color-purple);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 0, 110, 0.1) 100%);
    grid-column: 1 / -1;
}

.project-header {
    margin-bottom: 1.5rem;
}

.project-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.project-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(157, 78, 221, 0.2);
    color: var(--color-cyan);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.project-status {
    margin-bottom: 1.5rem;
}

.status-bar {
    height: 8px;
    background: var(--color-bg-dark);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.status-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease;
}

.status-text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.project-tagline {
    font-style: italic;
    color: var(--color-purple);
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

/* ========================================
   CREATE TOKEN - ENHANCED
   ======================================== */
.create-token {
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.create-token::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
    filter: blur(80px);
}

.create-token-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.create-token-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.token-creator-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-tertiary);
    border: 2px solid var(--color-purple);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-glow);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.features-included {
    text-align: left;
    margin-bottom: 3rem;
}

.features-included h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-purple);
}

.included-list {
    list-style: none;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--color-text-secondary);
}

.included-list li svg {
    color: var(--color-cyan);
    flex-shrink: 0;
}

.token-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-purple);
}

.btn-large {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.6;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge svg {
    color: var(--color-purple);
}

.badge span {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

/* ========================================
   FOOTER - FIXED LOGO SIZE
   ======================================== */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 300px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.4));
}

/* Footer logo text removed */
.footer-logo-text {
    display: none;
}

.footer-description {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-purple);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;

        /* UPDATED: match navbar height variable */
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));

        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--color-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 0; /* UPDATED */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card.spotlight {
        grid-column: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .security-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

    .notify-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price {
        font-size: 3rem;
    }

    .token-creator-box {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-purple);
}

/* Loading state for wallet connection */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--color-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
