/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    /* Colors */
    --golden: #facc15;
    --golden-600: #d97706;
    --navy: #0f172a;
    --card-bg: rgba(16, 24, 39, 0.7);
    --icon-bg: rgba(30, 41, 59, 0.5);
    --dark-bg: #000000; /* Changed to pure black */
    --navy-700: #334155;
    --navy-400: #94a3b8;
    --navy-300: #cbd5e1;
    --navy-200: #e2e8f0;
    --navy-100: #f1f5f9;
    --text-lighter: #aaaaaa;
    /* Background colors */
    --background: #000000; /* Changed to pure black */
    --background-muted: #000000; /* Changed to pure black */
    --foreground: #ffffff;
    --muted-foreground: #c3c5c9;
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 2rem 0;
    
    /* Shadows */
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-all: all 0.3s ease;
    --transition-colors: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] {
    --background: #000000; /* Changed to pure black */
    --background-muted: #000000; /* Changed to pure black */
    --foreground: #ffffff;
    --muted-foreground: #c3c5c9;
    --navy-50: #0f172a;
    --navy-100: #1e293b;
    --navy-200: #334155;
    
}
@font-face {
  font-family: 'Aventa';
  src: url('fonts/Aventa-Regular.ttf') format('truetype');
  src: url('fonts/Aventa-Bold.ttf') format('truetype');
  src: url('fonts/Aventa-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

#tkn-main {
  scroll-margin-top: 60px;
}

body {
    font-family: 'Aventa',sans-serif ;
    /* 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,  */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--foreground);
    background-color: var(--background);
    background: var(--dark-bg);
    transition: var(--transition-colors);
    overflow-x: hidden;
}

body.auth-page {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-muted) 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; 
    }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 var(--container-padding);
 } 

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
} 

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--golden)/20%;
    color: var(--golden);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--golden)/30%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
}
/* a {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-colors);
} */
.text-gradient {
    /* background: linear-gradient(135deg, var(--golden) 0%, var(--golden-600) 100%); */
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.type-text {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  min-height: 2.5em;
  max-width: 90%;
}
.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
}

.bg-muted {
    background-color: var(--background-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    /* color: #000000; */
    /* font-weight: 800; */
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-all);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-600) 100%);
    color: #000000;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-primary a{
    color: #000000;
    font-weight: 900;
}

.btn-secondary {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--navy-300);
}

.btn-secondary:hover {
    background: var(--navy-100);
    border-color: var(--golden);
}

.btn-social {
    background: var(--background);
    color: var(--foreground);
    border: 2px solid var(--navy-200);
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.btn-social:hover {
    border-color: var(--golden);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.golden-glow {
    position: relative;
    overflow: hidden;
}

.golden-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.golden-glow:hover::before {
    left: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-colors);
}

/* [data-theme="dark"] .navbar {
    background: black;
    border-bottom: 1px solid transparent;
} */

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}



.nav-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--foreground);
            text-decoration: none;
        }

        .nav-logo {
            height: 3rem; /* Increased from 3rem to 3.5rem */
            width: auto;
            transition: transform 0.3s ease;
        }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
   
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
    border-radius: 20px;
    transition: var(--transition-colors);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden);
}
.nav-container a{
    border-radius: 8px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-colors);
}

.theme-toggle:hover {
    background: var(--navy-100);
    color: var(--golden);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger span {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition-all);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    color: white;
    overflow: hidden;
}

.hero-simple {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-muted) 100%);
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 204, 21, 0.2);
    color: var(--golden);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(250, 204, 21, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-simple .hero-description {
    color: var(--muted-foreground);
    font-weight: 100;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    font-weight: 900;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--golden);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}


/* Mobile */
@media (max-width: 600px) {
  .type-text {
    font-size: 1.5rem;
    padding: 0 10px;
  }
}

/* Features Grid */
.features-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--background);
    border: 1px solid var(--navy-200);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-all);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--golden), var(--golden-600));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--golden)/20%, var(--golden)/10%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-all);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--golden);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.feature-card p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.feature-list i {
    color: #10b981;
    font-size: 0.875rem;
}
/* small section bteween hero and about section  styling*/
        .small-section{
            margin: 0;
            /* padding: 20px; */
            /* font-family: 'Arial', sans-serif; */
            background-color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            

        }
        
        .small-container {
             /* display: flex;
            justify-content: center;
            align-items: center; */
            background-color: #000000;
            border-radius: 12px;
            /* box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2); */
            padding: 30px;
            width: 100%;
            max-width: 1000px;
            /* border: 1px solid #333; */
        }
        
        .small-content-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        
        .small-award, .small-rating-box {
            flex: 1;
            padding: 25px 15px;
            border-radius: 10px;
            /* background-color: #222222; */
            background: linear-gradient(
                to bottom, 
                rgba(255, 165, 0, 0.3) 0%,
                rgba(8, 8, 8, 0) 100%
            );
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            min-height: 100px;
        }
        
        .small-size-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .small-percentage {
            /* color: #FFD700; */
            font-size: 42px;
            font-weight: 900;
            /* text-shadow: 0 0 6px rgba(255, 215, 0, 0.7); */
            line-height: 1;
            background: linear-gradient(90deg, #ff8a00, #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
        }
        
        .small-daily {
            color: #FFD700;
            font-size: 16px;
            font-weight: 500;
            margin-top: 2px;
        }
        
        .small-award-content, .small-rating-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .small-h1 {
            color: #ffffff;
            font-size: 16px;
            margin: 0;
            line-height: 1.3;
            font-weight: 700;
        }
        
        .small-divider {
            width: 3px;
            height: 80px;
            margin: 1rem;
            background: linear-gradient(to bottom, #FFD700, #FF8C00, #FFD700);
            border-radius: 3px;
        }
        
        .small-rating {
            color: #ffffff;
            font-size: 16px;
            margin-bottom: 2px;
            font-weight: 800;
        }
        
        .small-reviews {
            color: #cccccc;
            font-size: 12px;
            font-weight: 500;
        }
        
        .small-stars {
            color: #FFD700;
            font-size: 18px;
            letter-spacing: 1px;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
        }
        
        @media (max-width: 900px) {
            .small-content-row {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .small-award, .small-rating-box {
                min-width: 250px;
                flex: 1 1 calc(50% - 30px);
            }
            
            .small-divider {
                display: none;
            }
        }
        
        @media (max-width: 600px) {
            .small-award, .small-rating-box {
                flex: 1 1 100%;
                flex-direction: column;
                gap: 10px;
                padding: 20px 15px;
            }
            
            .small-size-indicator, .small-award-content, .small-rating-content {
                text-align: center;
                width: 100%;
            }
            
            .small-h1 {
                font-size: 15px;
            }
            
            .small-percentage {
                font-size: 28px;
            }
        }

 /* about container */
        .about-container {
            background-color:var(--background);
            color: #f5f6fa;
            max-width: 1200px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin:  40px auto ;
            align-items: center;
        }
        
        .about-image-collage {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .about-collage{
             flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns:  1fr;
            gap: 15px;
        }

        .about-image{
            width: 100%;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .about-collage-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .about-collage-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .about-collage-img:hover img {
            transform: scale(1.05);
        }
        .about-collage-img:nth-child(1) {
            grid-column: span 2;
            height: 220px;
        }
        .about-collage-img:nth-child(2), 
        .about-collage-img:nth-child(3) {
            height: 180px;
        }
        .about-content {
            flex: 1;
            min-width: 300px;
        }
        .about-heading {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color:  #ffd700;;
            margin-bottom: 10px;
        }
        .about-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .about-text {
            color: #b2bec3;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        .about-feature-column {
            flex: 1;
            min-width: 150px;
        }
        .about-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        .about-feature-icon {
            color:  #ffd700;;
            margin-right: 10px;
            margin-top: 3px;
        }
        .about-founder {
            display: flex;
            align-items: center;
            margin-top: 40px;
            gap: 20px;
        }
        .about-founder-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid  #6c5ce7;
        }
        .about-founder-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-founder-info h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        .about-founder-info p {
            color: #b2bec3;
            margin-bottom: 10px;
        }
        .about-call-cta {
            display: flex;
            align-items: center;
            color: var #6c5ce7;
            font-weight: 600;
            font-size: 18px;
        }
        .about-call-cta i {
            margin-right: 10px;
            font-size: 20px;
        }
        @media (max-width: 768px) {
            .about-container {
                flex-direction: column;
                margin: 2rem ;
            }
            .about-title {
                font-size: 28px;
            }
        }

         /* winning section  */
    .win-container {
            background: radial-gradient(ellipse at center, #3d2e00 0, #000000 100%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        .win-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .win-header h1 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff8a00, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 0.5px;
        }
        
        .win-header p {
            font-size: 18px;
            color: var(--win-text-light);
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .win-stats-row {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .win-stat-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            flex: 0 1 200px;
            min-width: 180px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s ease;
        }
        
        .win-stat-card:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        .win-stat-card h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--win-text-white);
            margin: 0 0 8px 0;
            letter-spacing: 0.5px;
        }
        
        .win-stat-card p {
            font-size: 14px;
            color: var(--win-text-light);
            margin: 0;
            opacity: 0.9;
        }
        
        .win-features-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 10px 0;
        }
        
        .win-features-track {
            display: flex;
            will-change: transform;
        }
        
        .win-feature-card {
            background-color: var(--win-card-bg);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            text-align: left;
            border: 1px solid rgba(251, 191, 36, 0.3);
            width: 200px;
            min-width: 200px;
            margin-right: 20px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            flex-shrink: 0;
        }
        
        .win-feature-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border-color: var(--win-accent-gold);
            background-color: rgba(16, 24, 39, 0.9);
        }
        
        .win-feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 0 20px 0;
            background: var(--win-icon-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--win-accent-gold);
            font-size: 24px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(251, 191, 36, 0.2);
        }
        
        .win-feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--win-text-white);
            background: linear-gradient(to right, #fef3c7, #fcd34d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .win-feature-card p {
            font-size: 14px;
            color: var(--win-text-light);
            opacity: 0.9;
            line-height: 1;
            margin: 0;
        }
        
        .win-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin: 50px auto;
            width: 80%;
            max-width: 800px;
            position: relative;
        }
        
        .win-divider::after {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--win-accent-gold), transparent);
        }
        
        @media (max-width: 768px) {
            .win-container {
                padding: 30px 15px;
            }
            
            .win-header h1 {
                font-size: 32px;
            }
            
            .win-header p {
                font-size: 16px;
            }
            
            .win-feature-card {
                width: 160px;
                min-width: 160px;
                padding: 20px;
                margin-right: 15px;
            }
            
            .win-feature-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .win-stat-card {
                padding: 20px 15px;
            }
            
            .win-stat-card h2 {
                font-size: 40px;
            }
        }
/* Your Wealth Engine Starts Here  Section (New content) */
 
/* tsdt section */
.container{
  background: #000000;
}
.tsdt-header-container {
    max-width: 1200px;
    background-color: #0a0a0a;
    margin: 0 auto;
    padding: 40px 20px 20px;
    text-align: center;
}

.tsdt-content-container {
    background-color: #0a0a0a;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.tsdt-content {
    flex: 1;
    min-width: 300px;
}

.tsdt-video-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.tsdt-video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
    aspect-ratio: 16/9;
}

.tsdt-video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.tsdt-h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    background: linear-gradient(90deg, #ff8a00, #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.tsdt-tagline {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #aaa;
    font-weight: 300;
}

.tsdt-intro-text {
    max-width: 800px;
    margin: 0 auto 30px;
}

.tsdt-divider {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, rgba(255,165,0,0.3), rgba(255,165,0,0.8), rgba(255,165,0,0.3));
    margin: 20px auto 30px;
    border: none;
}

.tsdt-h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 20px;
    /* align-items: center; */
    background: linear-gradient(90deg, #ff8a00, #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tsdt-p {
    margin-bottom: 10px;
    font-weight: 300;
}

.tsdt-token-features {
    margin-bottom: 30px;
}

.tsdt-feature-item {
    /* margin-bottom: 5px; */
    display: flex;
    align-items: flex-start;
    text-align: left;
}

/* .tsdt-feature-item strong {
    color: #ffa500;
} */

/* Advantages Section (Below TSDT + Video) */
.tsdt-advantages {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.tsdt-advantages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tsdt-advantage-box {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.tsdt-advantage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.1);
}

.tsdt-advantage-box strong {
    color: #ffa500;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .tsdt-content-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .tsdt-video-wrapper {
        margin: 0 auto;
    }
    
    .tsdt-advantage-box {
        min-width: 100%;
    }
}

    /* tokenomics section */
        
    .tkn-container {
      background-color: var(--bg-dark);
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    .tkn-h1 {
      text-align: center;
      font-size: 2.5rem;
      color: white;
      font-weight: bolder;
      text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
      /* margin-bottom: 2rem; */
    }

    .tkn-total-supply {
      text-align: center;
      font-size: 1.8rem;
      /* margin-bottom: 2rem; */
    }

    .tkn-total-supply span {
      /* color: var(--golden); */
        background: linear-gradient(90deg, #ff8a00, #ffcc00);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: bold;
        text-shadow: 0 0 8px rgba(255, 107, 0, 0.5);
    }

    .tkn-tokenomics-grid {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 2rem;
      justify-content: center;
      align-items: start;
    }

    .tkn-allocation-column {
      display: flex;
      flex-direction: column;
      margin-top: 8rem;
      gap: 3rem;
      justify-content: center;
    }

    .tkn-allocation-item {
      display: flex;
      align-items: flex-start;
      padding: 1rem;
      border-radius: 8px;
      transition: transform 0.3s ease;
      background-color: rgba(255, 255, 255, 0.03);
    }

    .tkn-allocation-item:hover {
      transform: translateY(-5px);
    }

    .tkn-color-bar {
      min-width: 5px;
      height: 40px;
      margin-right: 1rem;
      border-radius: 3px;
    }

    .tkn-allocation-name {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
      white-space: nowrap;
    }

    .tkn-allocation-amount {
      color: var(--golden);
      font-weight: bold;
      font-size: 1.5rem;
      white-space: nowrap;
      background: linear-gradient(90deg, #ff8a00, #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    }

    .tkn-allocation-note {
      color: var(--text-lighter);
      font-size: 0.9rem;
      max-width: 200px;
      word-wrap: break-word;
    }

    .tkn-chart-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      aspect-ratio: 2 / 2;
      margin: 0 auto;
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .tkn-chart-video-bg video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
      z-index: 1;
    }

    .tkn-chart-image {
      width: 70%;
       /* top: rem;  */
       left: 0.5rem;
      height: auto;
      z-index: 2;
      position: relative;
      filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.4));
      animation: pulse 4s infinite alternate;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.4));
      }
      100% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.6));
      }
    }

    /* Responsive for Tablets */
    @media (max-width: 992px) {
      .tkn-tokenomics-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
          "left"
          "chart"
          "right";
        gap: 2rem;
      }

      .tkn-allocation-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
      }

      .tkn-allocation-item {
        width: 45%;
        min-width: 180px;
      }

      .tkn-chart-container {
        max-width: 400px;
      }
      .tkn-chart-image {
        width: 90%;
        top: 0;
      }
    }

    /* Responsive for Mobile */
    @media (max-width: 480px) {
      .tkn-h1 {
        font-size: 2rem;
      }

      .tkn-total-supply {
        font-size: 1.5rem;
      }

      .tkn-allocation-column {
        flex-direction: column;
        align-items: center;
      }

      .tkn-allocation-item {
        width: 100%;
      }

      .tkn-chart-container {
        max-width: 300px;
      }

      .tkn-chart-image {
        width: 90%;
        top: 0;
      }
    }

    /* Why Choose Us Section Styles */
     .why-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            min-height: 100vh;
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Section */
        .why-header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
        }
        .why-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            /* color: #ffcc00; */
            background: linear-gradient(90deg, #ff8a00, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .why-header p {
            font-size: 18px;
            color: #aaa;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Features Section */
        .why-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .why-feature-card {
            background: rgba(30, 30, 30, 0.8);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 200, 0, 0.1);
            backdrop-filter: blur(5px);
            transition: all 0.4s ease;
        }
        .why-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
            border-color: rgba(255, 200, 0, 0.3);
            background: rgba(40, 40, 40, 0.9);
        }
        .why-feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #ffcc00;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
        }
        .why-feature-card h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .why-feature-card p {
            color: #aaa;
            font-size: 16px;
            line-height: 1.6;
        }

/* Testimonials */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--navy-200);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--golden);
    font-size: 1.25rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--navy);
    font-size: 1.25rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.author-info span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.carousel-progress {
    margin-top: 2rem;
    width: 100%;
    height: 4px;
    background: var(--navy-200);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--golden), var(--golden-600));
    width: 0;
    transition: width 0.1s linear;
}

/* FAQ  section styling*/
 .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(
                to bottom, 
                rgba(255, 165, 0, 0.3) 0%,
                rgba(8, 8, 8, 0) 100%
            );
            background-attachment: fixed;
            padding: 2rem;
        }

        .faq-section {
            padding: 4rem 0;
        }

        .faq-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(255, 215, 0, 0.2);
            color: var(--faq-gold);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            backdrop-filter: blur(5px);
        }

        .faq-section-title {
            font-size: 2.5rem;
            margin: 0;
            color: var(--faq-foreground);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* FAQ content styling */
        .faq-main-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .faq-qr-container {
            /* text-align: center; */
            margin-bottom: 2rem;
            background: rgba(0,0,0,0.5);
            padding: 20px;
            border-radius: 1rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .faq-qr-image {
            width: 180px;
            height: 180px;
            border-radius: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: white;
            padding: 10px;
        }

        .faq-content-container {
            width: 100%;
        }

        .faq-list-container {
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .faq-item {
            background: var(--faq-background);
            border: 1px solid var(--faq-navy-200);
            border-radius: 1rem;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: var(--faq-transition-all);
            backdrop-filter: blur(5px);
            width: 100%;
        }

        .faq-item:hover {
            border-color: var(--faq-gold);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            cursor: pointer;
            transition: var(--faq-transition-colors);
        }

        .faq-question:hover {
            background: var(--faq-background-muted);
        }

        .faq-question h3 {
            font-size: 1.125rem;
            margin-bottom: 0;
            color: var(--faq-foreground);
        }

        .faq-question i {
            color: var(--faq-gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
            animation: faq-slideDown 0.3s ease;
        }

        .faq-answer p {
            margin-bottom: 0;
            color: var(--faq-muted-foreground);
        }

        .faq-hidden-items {
            display: none;
        }

        .faq-hidden-items.show {
            display: block;
        }

        .faq-show-more {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 1rem;
            background: var(--faq-background);
            border: 1px solid var(--faq-navy-200);
            border-radius: 0.5rem;
            color: var(--faq-gold);
            font-weight: 600;
            cursor: pointer;
            transition: var(--faq-transition-all);
            backdrop-filter: blur(5px);
            margin-top: 1rem;
        }

        .faq-show-more:hover {
            background: var(--faq-background-muted);
            border-color: var(--faq-gold);
            transform: translateY(-2px);
        }

        .faq-show-more i {
            transition: transform 0.3s ease;
        }

        .faq-show-more.active i {
            transform: rotate(180deg);
        }

        @keyframes faq-slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Desktop styles */
        @media (min-width: 768px) {
            /* .faq-main-container {
                flex-direction: row;
                align-items: center;
                gap: 3rem;
            }
            
            .faq-qr-container {
                flex: 0 0 300px;
                position: sticky;
                top: 2rem;
                margin-bottom: 0;
                align-items: center;
            }
            
            .faq-qr-image {
                position: relative;
                left: ;
                width: 100%;
                height: auto;
                max-width: 250px;
                margin-left: 10px;
            } */
             .faq-main-container {
                flex-direction: row;
                align-items: flex-start;
                gap: 3rem;
            }
            
            .faq-qr-container {
                flex: 0 0 300px;
                position: sticky;
                top: 2rem;
                margin-bottom: 0;
                text-align: left;
            }
            
            .faq-qr-image {
                width: 100%;
                height: auto;
                max-width: 250px;
            }
            
            .faq-content-container {
                flex: 1;
            }
        }

        /* Animation classes */
        .faq-fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .faq-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* start in easy setps section */
        .steps-container {
            width: 100%;
            padding: 60px 20px;
            box-sizing: border-box;
            background: #000000;
        }
        
        .how-section, .how-it-works {
            max-width: 1400px;
            margin: 0 auto;
            background:  #000000;;
            padding: 40px 0;
            box-sizing: border-box;
        }
        
        .section-title, .how-it-works h1 {
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 700;
            margin-bottom: 50px;
            color: #ffffff;
            text-align: center;
            position: relative;
        }
        
        .section-title:after, .how-it-works h1:after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            /* background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%); */
            margin: 20px auto 0;
            border-radius: 3px;
        }
        
        .steps-wrapper, .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            width: 100%;
        }
        
        .step-box, .step {
            background: #121212;
            border-radius: 14px;
            padding: 35px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .step-box::before, .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(
                to bottom, 
                rgba(255, 165, 0, 0.3) 0%,
                rgba(8, 8, 8, 0) 100%
            );
            z-index: 1;
        }
        
        .step-number {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 48px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.08);
            line-height: 1;
            z-index: 2;
        }
        
        .step-info, .step-content {
            position: relative;
            z-index: 3;
            padding-top: 0px;
        }
        
        .step-box:hover, .step:hover {
            transform: translateY(-8px);
        }
        
        .step-box h3, .step h2 {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 20px 0;
            color: #ffffff;
            position: relative;
            top: 20px;
        }
        
        .step-box p, .step p {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            padding-top: 10px;
        }
        
        @media (max-width: 1200px) {
            .steps-wrapper, .steps-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 40px 15px;
            }
            
            .steps-wrapper, .steps-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .step-box, .step {
                padding: 30px;
            }
            
            .step-info, .step-content {
                padding-top: 0px;
            }
            
            .step-box h3, .step h2 {
                top: 15px;
            }
        }

/* CTA Section */

.cta-section {
    /* background: linear-gradient(135deg, var(--golden)/10% 0%, var(--golden)/5% 100%); */
    /*padding: 0 4rem 4rem 4rem;*/
	padding: 0 1rem 1rem 1rem;
    
    text-align: center;
    display: flex;
    width: 80%;
    justify-content: center;
    /* background: linear-gradient(
                to bottom, 
                rgba(255, 165, 0, 0.3) 0%,
                rgba(8, 8, 8, 0) 100%
            ); */
            width: 100%;
}

 .cta-container{
     background: linear-gradient(
                to bottom, 
                rgba(255, 165, 0, 0.3) 0%,
                rgba(8, 8, 8, 0) 100%
            );
            width: 100%;
            
            border-radius: 14px;
            /*width: 80%; */
            /* padding: 2rem; */
            /* display: flex;
            justify-content: center;*/
            
} 
.cta-content h2 {
    margin-top: 4rem;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Company Logos */
.company-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    opacity: 0.6;
    transition: var(--transition-all);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: var(--transition-all);
    position: relative;
    cursor: pointer;
}

.logo-item i {
    font-size: 2.5rem;
    color: var(--navy-400);
    transition: var(--transition-all);
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-item:hover i {
    color: var(--golden);
}

.logo-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-all);
    white-space: nowrap;
}

.logo-item:hover::after {
    opacity: 1;
    bottom: -3rem;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--golden);
    font-size: 2.5rem;
}

.footer-section h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
    text-align: center;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-colors);
}
.footer-section ul  a {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-colors);
}

.footer-section ul li a:hover {
    color: var(--golden);
}
a {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-colors);
}

.footer-bottom {
    border-top: 1px solid var(--navy-700);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}
footer i {
  font-size: 20px;
  margin-top: 5px;
  margin-right:  30px;
  color:  var(--golden);
}

footer i:hover {
  color: var(--golden-600) ;
}
.footer-icons{
    list-style-type: none;
    display: flex;
    justify-content: start;
}
 @media (max-width: 768px) {
           .footer-section ul {
    list-style: none;
     text-align: left; 
     padding-left: 1rem;
} 
.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-colors);
}

        }
/* form pages styling */
/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--background);
    border-bottom: 1px solid var(--navy-200);
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--foreground);
}

.auth-brand i {
    color: var(--golden);
    font-size: 1.5rem;
}

.auth-form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 500px;
    background: var(--background);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--navy-200);
    overflow: hidden;
}

.auth-form-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--golden)/5% 0%, transparent 100%);
}

.auth-form-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.auth-form-header p {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.auth-form {
    padding: 1rem 2rem 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--navy-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
    transition: var(--transition-all);
}

.form-input:focus {
    outline: none;
    border-color: var(--golden);
    box-shadow: 0 0 0 3px var(--golden)/20%;
    transform: translateY(-1px);
}

.form-input.error {
    border-color: #ef4444;
    animation: shake 0.5s ease-in-out;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition-colors);
}

.password-toggle:hover {
    color: var(--golden);
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: var(--navy-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: var(--transition-all);
    border-radius: 2px;
}

.strength-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--foreground);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--navy-300);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-all);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--golden);
    border-color: var(--golden);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: bold;
}

.forgot-password {
    color: var(--golden);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-colors);
}

.forgot-password:hover {
    color: var(--golden-600);
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: var(--muted-foreground);
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--navy-200);
}

.auth-divider span {
    background: var(--background);
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.social-login {
    margin-bottom: 1.5rem;
}

.auth-footer {
    text-align: center;
    color: var(--muted-foreground);
}

.auth-footer a {
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-colors);
}

.auth-footer a:hover {
    color: var(--golden-600);
}

.auth-back {
    padding: 1rem 2rem;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-colors);
}

.back-link:hover {
    color: var(--golden);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-all);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--background);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: var(--transition-all);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.modal-icon.success {
    background: #10b981;
    color: white;
}

.modal h2 {
    margin-bottom: 1rem;
    color: var(--foreground);
}

.modal p {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--navy-200);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--golden);
    width: 0;
    transition: width 3s ease;
}


/* About Page Specific */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* .story-paragraphs {
    space-y: 1.5rem;
} */

.story-paragraphs p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-visual {
   /* ,aheight: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.story-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: थोड़ा rounded corners */
}


.story-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--golden)/20%, var(--golden)/5%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.story-circle i {
    font-size: 3rem;
    color: var(--golden);
    margin-bottom: 1rem;
}

.story-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.story-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border: 1px solid var(--navy-200);
    border-radius: 1rem;
    transition: var(--transition-all);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--golden)/20%, var(--golden)/10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-all);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--golden)/30%, var(--golden)/20%);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--golden);
}
/* founder section */
.founder-section {
    max-width: 1000px;
    margin: 0 auto;
}

.founder-card {
    background: var(--background);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--navy-200);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.founder-image {
    background: linear-gradient(135deg, var(--golden)/20%, var(--golden)/5%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.founder-image img{
    max-width: 250px;
}

.founder-avatar {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
}

.flip-card {
    background-color: transparent;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: var(--golden);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card-front i,
.flip-card-back i {
    font-size: 2rem;
    color: var(--navy);
}

.flip-card-back span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 0.5rem;
}

.founder-image h3 {
    font-size: 1.5rem;
    margin: 1rem;
    color: var(--foreground);
}

.founder-title {
    color: var(--muted-foreground);
    font-weight: 500;
}

.founder-content {
    padding: 2rem;
}

.founder-bio {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--foreground);
    font-weight: 500;
}

.achievement i {
    color: var(--golden);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--background);
    border: 1px solid var(--navy-200);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-all);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--golden)/20%, var(--golden)/10%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-all);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--golden)/30%, var(--golden)/20%);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--golden);
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

.service-features i {
    color: #10b981;
    font-size: 0.875rem;
}

.token-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ecosystem-card {
    background: var(--background);
    border: 1px solid var(--navy-200);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-all);
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden);
}

.ecosystem-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-600) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-all);
}

.ecosystem-card:hover .ecosystem-icon {
    transform: scale(1.1) rotate(360deg);
}

.ecosystem-icon i {
    font-size: 1.5rem;
    color: var(--navy);
}

.ecosystem-benefits {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.ecosystem-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.ecosystem-benefits li::before {
    content: '•';
    color: var(--golden);
    font-weight: bold;
    font-size: 1rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -20px, 0);
    }
    70% {
        transform: translate3d(0, -10px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Scroll Animations */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background: var(--background);
        border-bottom: 1px solid var(--navy-200);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        transform: translateY(-100%);
        transition: var(--transition-all);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
    }
    
    .founder-achievements {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .features-grid,
    .services-grid,
    .token-ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .auth-form-wrapper {
        margin: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .auth-form {
        padding: 1rem;
    }
    
    .auth-form-header {
        padding: 1.5rem 1rem 0.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
    }
}

 /* Enhanced Mobile Navbar */
@media (max-width: 768px) {
    .navbar {
        padding: 0;
        position: relative;
        z-index: 1000;
    }
    
    .nav-container {
        height: 4rem;
        padding: 0 1rem;
        position: relative;
    }
    
    .nav-brand {
        font-size: 1.1rem;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: -100%;
        width: 280px;
        height: calc(100vh - 4rem);
        background: var(--background);
        border-right: 1px solid var(--navy-200);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
        border-radius: 0.5rem;
        transition: background-color 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: var(--navy-100);
    }
    
    .nav-link.btn-primary {
        margin: 1rem 0 0;
        width: 100%;
        align-items: left;
        /* text-align: center; */
    }
    .btn-primary a{
        align-self: left;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        gap: 1rem;
        z-index: 1001;
    }
    
    .hamburger {
        display: flex;
    }
    
    .theme-toggle {
        font-size: 1.1rem;
    }
    
    /* Dark mode adjustments */
    /* [data-theme="dark"] .nav-menu {
        background: var(--navy-800);
        border-right-color: var(--navy-700);
    }
    
    [data-theme="dark"] .nav-link:hover {
        background-color: var(--navy-700);
    } */
    
    /* Page content shift */
    body.menu-open {
        overflow-x: hidden;
        position: relative;
        right: 0;
        transition: right 0.3s ease;
    }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    body.menu-open.active::after {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-menu {
        width: 260px;
    }
}

/* Enhanced Mobile Navbar Fix */
@media (max-width: 768px) {
    .navbar {
        position: fixed;  /* Changed from relative to fixed */
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0;
        background: var(--background);
        border-bottom: 1px solid var(--navy-200);
    }
    
    [data-theme="dark"] .navbar {
        background: var(--navy-800);
        border-bottom-color: var(--navy-700);
    }
    
    .nav-container {
        height: 4rem;
        padding: 0 1rem;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: -100%;
        width: 280px;
        height: calc(100vh - 4rem);
        background: var(--background);
        border-right: 1px solid var(--navy-200);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
        z-index: 1000;
        overflow-y: auto;
        margin: 0;  /* Added to prevent double navbar */
    }
    
    /* Add this to prevent content shift */
    body {
        padding-top: 4rem; /* Matches navbar height */
    }
    
    /* Remove duplicate navbar if exists */
    .navbar ~ .navbar {
        display: none;
    }
}
/* Mobile Tap Effects (will only trigger on touch devices) */

@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
    /* Nav Links */
    .nav-link:active {
        color: var(--golden);
    }
    .nav-link:active::after {
        width: 100%;
    }
    
    /* Buttons */
    .btn-primary:active {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    .btn-secondary:active {
        background: var(--navy-100);
        border-color: var(--golden);
    }
    
    /* Cards */
    .feature-card:active,
    .token-card:active {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
        border-color: var(--golden);
    }
    
    /* Icons */
    .feature-card:active .feature-icon,
    .token-card:active .token-icon {
        transform: scale(1.1);
    }
    
    /* Golden Glow */
    .golden-glow:active::before {
        animation: shimmer 1.5s ease-in-out;
    }
}

/* Desktop Hover Effects (works only with mouse) */
@media (hover: hover) {
    .nav-link:hover {
        color: var(--golden);
    }
    .nav-link:hover::after {
        width: 100%;
    }
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
        border-color: var(--golden);
    }
    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Mobile Tap Effects (works only on touch devices) */
@media (max-width: 768px) {
    .nav-link:active,
    .nav-link:focus {
        color: var(--golden) !important;
    }
    .nav-link:active::after,
    .nav-link:focus::after {
        width: 100% !important;
    }
    .btn-primary:active,
    .btn-primary:focus {
        transform: translateY(-2px) !important;
        box-shadow: var(--shadow-lg) !important;
    }
    .feature-card:active,
    .feature-card:focus {
        transform: translateY(-5px) !important;
        box-shadow: var(--shadow-xl) !important;
        border-color: var(--golden) !important;
    }
    .feature-card:active .feature-icon,
    .feature-card:focus .feature-icon {
        transform: scale(1.1) rotate(5deg) !important;
    }
}

/* Base transitions for all devices
.nav-link,
.btn,
.feature-card,
.feature-icon {
    transition: all 0.3s ease;
}

/* Prevent sticky hover states on mobile 
.touch-device .feature-card:hover,
.touch-device .btn:hover,
.touch-device .nav-link:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

/* Focus states for accessibility 
.nav-link:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--golden);
    outline-offset: 2px;
} */



/* Page transitions */
.page-content {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Active link styling */
.nav-link.active {
  color: var(--golden);
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--golden);
}


.token-details {
    background: var(--background-dark-3);
    border-radius: 12px;
    padding: 25px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);  
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.token-heading {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.token-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.detail-item {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition-all);
}

.detail-item:hover {
     transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden);
}

.detail-label {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--golden), var(--golden-600));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.detail-value {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .token-details {
        padding: 20px 15px;
    }
}


        /* Features Section */
         .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(30, 41, 59, 0.9);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: rgba(251, 191, 36, 0.3);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #facc15;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .feature-card p {
            color: #eceef0;
            line-height: 1.6;
        } 

        /* Token Details Section */
        .token-details h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #ff8a00, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-align: center;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .detail-item {
            background: rgba(30, 41, 59, 0.5);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #facc15;
            transition: all 0.3s ease;
        }

        .detail-item:hover {
            transform: translateY(-5px);
            background: rgba(30, 41, 59, 0.8);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .detail-item h3 {
            color: #facc15;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .detail-item p {
            color: #e2e8f0;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .contract-section {
            margin-top: 40px;
            text-align: center;
        }

        .contract-section h3 {
            color: #facc15;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .contract-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }

        .contract-address {
            background: rgba(15, 23, 42, 0.8);
            padding: 15px 20px;
            border-radius: 10px;
            /* font-family: monospace; */
            color: #facc15;
            word-break: break-all;
            text-align: center;
            width: 100%;
            border: 1px solid rgba(251, 191, 36, 0.3);
        }

        .copy-btn {
            background: linear-gradient(to right, #facc15, #f59e0b);
            color: #1e293b;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 auto;
        }

        .copy-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
        }

        .copy-btn svg {
            width: 18px;
            height: 18px;
        }

        .image-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 110%;
            height: 110%;
            object-fit: cover;
            opacity: 2;
            z-index: 1;
        }
        

        /* Responsive Video Styles */
.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}s
        /* tsdt token */
            .video-container {
            flex: 1;
            min-width: 300px;
        }

        .features-container-tsdt {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: flex-start;
        }
        .features-grid-tsdt {
            flex: 1;
            min-width: 250px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        /* Feature Card Styles - Smaller Size */
    
        .feature-card p {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* background image style */
        /* .bg-tsdt-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    
    .bg-tdst-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    } */
        /* Video Styles */
        .responsive-video {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1)
        }
        
        .responsive-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Animation Styles */
        .fade-in-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
        .section {
            padding: 60px 0;
        }
        
        .features-container-tsdt {
            flex-direction: column;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .feature-card {
            padding: 25px;
        }
    }

 /* Features Grid Section Styles  */
.features-grid-section {
    background: linear-gradient(135deg, #121212 0%, #0d0d1a 100%);
    padding: 40px 20px;
    min-height: 100vh;
}

.features-grid-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.features-grid-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.features-grid-section .feature-card {
    background: rgba(30, 30, 50, 0.7);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-grid-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #0844f8;
}

.features-grid-section .feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #4cc9f0;
}

.features-grid-section .feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.features-grid-section .feature-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .features-grid-section .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-section h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

      /* why choose us section */
       .main-container {
            display: flex;
            max-width: 1300px;
            width: 100%;
            align-items: center;
            gap: 40px;
        }
        
        .cards-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .left-column .feature-card {
            background: 
                linear-gradient(90deg, 
                    rgba(0, 0, 0, 0.9) 0%,
                    rgba(212, 175, 55, 0.08) 50%, 
                    rgba(212, 175, 55, 0.25) 100%);
            border-right: 1px solid #000;
            border-left: none;
        }
        
        .right-column .feature-card {
            background: 
                linear-gradient(90deg, 
                    rgba(212, 175, 55, 0.25) 0%,
                    rgba(212, 175, 55, 0.08) 50%, 
                    rgba(0, 0, 0, 0.9) 100%);
            border-left: 1px solid #000;
            border-right: none;
        }
        
        .image-container {
            flex: 0 0 380px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 10px;
        }
        
        .image-container video {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            filter: brightness(1.1);
        }
        
        .feature-card {
            border-radius: 8px;
            padding: 18px;
            padding-bottom: 0px;
            position: relative;
            overflow: hidden;
            border-top: none;
            border-bottom: none;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(to bottom, #D4AF37, #A67C00);
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            height: 1px;
            width: 50%;
            background: linear-gradient(90deg, #D4AF37, transparent);
        }
        
        .feature-card .bottom-border {
            position: absolute;
            bottom: 0;
            height: 1px;
            width: 50%;
            background: linear-gradient(90deg, #D4AF37, transparent);
        }
        
        .left-column .feature-card::before {
            right: 0;
        }
        .left-column .feature-card::after {
             right: 0;
            background: linear-gradient(270deg, rgba(212, 175, 55, 0), #D4AF37 50%, rgba(212, 175, 55, 0));
        }
        .left-column .feature-card .bottom-border {
            right: 0;
            background: linear-gradient(270deg, rgba(212, 175, 55, 0), #D4AF37 50%, rgba(212, 175, 55, 0));
        }
        
        .right-column .feature-card::before {
            left: 0;
        }
        .right-column .feature-card::after {
            left: 0;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0), #D4AF37 50%, rgba(212, 175, 55, 0));
        }
        .right-column .feature-card .bottom-border {
            left: 0;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0), #D4AF37 50%, rgba(212, 175, 55, 0));
        }
        
        .feature-card h3 {
            font-size: 1.35rem;
            color: #D4AF37;
            margin-bottom: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .feature-card p {
            font-size: 1.05rem;
            color: #bbbbbb;
            line-height: 1.5;
        }
        
        .header {
            text-align: center;
            margin-bottom: 50px;
            width: 100%;
            
        }
        
        h1 {    
            font-size: 3rem;        
            color: #D4AF37;
            margin-bottom: 25px;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }
        
        .tagline {
            font-size: 1.0rem;
            line-height: 1.7;
            margin-bottom: 15px;
            color: #dddddd;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 1200px) {
            .main-container {
                gap: 30px;
            }
            
            .image-container {
                flex: 0 0 340px;
            }
        }
        
        @media (max-width: 1024px) {
            .main-container {
                flex-direction: column;
                gap: 35px;
            }
            
            .image-container {
                order: -1;
                margin-bottom: 40px;
                flex: 0 0 auto;
                width: 85%;
                max-width: 500px;
            }
            
            .cards-column {
                width: 100%;
                max-width: 550px;
                gap: 25px;
            }
            
            .left-column .feature-card,
            .right-column .feature-card {
                background: 
                    linear-gradient(90deg, 
                        rgba(212, 175, 55, 0.15) 0%, 
                        rgba(212, 175, 55, 0.08) 30%, 
                        rgba(0, 0, 0, 0.9) 100%);
            }
            
            .feature-card::before {
                left: 0;
                right: auto;
            }
            .feature-card::after,
            .feature-card .bottom-border {
                width: 100%;
                background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            }
            .feature-card::after {
                left: 0;
            }
            .feature-card .bottom-border {
                left: 0;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.4rem;
            }
            
            .feature-card {
                padding: 24px;
            }
            
            .image-container {
                width: 100%;
                padding: 8px;
            }
            
            .feature-card h3 {
                font-size: 1.25rem;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
        }

