/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Solid Colors Only */
    --primary-color: #00d4ff;
    --secondary-color: #7b2ff7;
    --accent-color: #ff6b35;
    --success-color: #00ff87;
    --warning-color: #ffd700;
    --danger-color: #ff3366;
    
    /* Neutral Colors */
    --dark-bg: #0a0e27;
    --dark-secondary: #151932;
    --dark-tertiary: #1e2442;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --border-color: #2d3748;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-tech: 'Orbitron', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===================================
   Preloader Styles
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.crypto-loader {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.coin {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

.coin:nth-child(2) {
    background: var(--secondary-color);
    animation-delay: 0.2s;
}

.coin:nth-child(3) {
    background: var(--accent-color);
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.loader-text {
    font-family: var(--font-tech);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--dark-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--primary-color);
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===================================
   Navigation Styles
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.1);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.logo i {
    color: var(--primary-color);
    font-size: 32px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo strong {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-close {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   Button Styles
   =================================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-bg {
    width: 100%;
    height: 100%;
    background: 
        radial-circle at 20% 30%,
        var(--dark-bg) 0%,
        var(--dark-secondary) 50%,
        var(--dark-bg) 100%;
    animation: bgAnimation 15s ease infinite;
}

@keyframes bgAnimation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-secondary);
}

.gradient-text {
    color: var(--primary-color);
    animation: colorShift 3s ease infinite;
}

@keyframes colorShift {
    0%, 100% { color: var(--primary-color); }
    50% { color: var(--secondary-color); }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-tech);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    padding: 25px 35px;
    background: var(--dark-secondary);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 36px;
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    color: var(--warning-color);
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 40%;
    right: 5%;
    color: var(--secondary-color);
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 20%;
    color: var(--primary-color);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--dark-secondary);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.about-img-placeholder {
    width: 350px;
    height: 350px;
    background: var(--dark-tertiary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
}

.about-img-placeholder i {
    font-size: 120px;
    color: var(--primary-color);
}

.about-img-box {
    width: 350px;
    height: 350px;
    background: var(--dark-tertiary);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-img-box:hover .about-img {
    transform: scale(1.1);
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.about-text > p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--dark-secondary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1);
}

.feature-icon-wrapper i {
    font-size: 36px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--dark-bg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   Plans Section
   =================================== */
.plans-section {
    padding: var(--section-padding);
    background: var(--dark-secondary);
    opacity: 1 !important;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 10px;
}

.amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-tech);
}

.plan-duration {
    color: var(--text-secondary);
    font-size: 14px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.plan-features i {
    color: var(--success-color);
    font-size: 18px;
}

/* ===================================
   Tokenomics Section
   =================================== */
.tokenomics-section {
    padding: var(--section-padding);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chart-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.token-details {
    background: var(--dark-secondary);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.token-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.token-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-tech);
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--dark-secondary);
    border-radius: 10px;
}

.dist-color {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.dist-label {
    flex: 1;
    font-weight: 500;
}

.dist-value {
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-tech);
    font-size: 18px;
}

/* ===================================
   Roadmap Section
   =================================== */
.roadmap-section {
    padding: var(--section-padding);
    background: var(--dark-secondary);
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-item.active .timeline-icon {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.timeline-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.timeline-item.active .timeline-icon i {
    color: var(--dark-bg);
}

.timeline-text {
    flex: 1;
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.timeline-item.active .timeline-text {
    border-color: var(--primary-color);
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--dark-secondary);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.timeline-text p {
    color: var(--text-secondary);
}

/* ===================================
   Team Section
   =================================== */
.team-section {
    padding: var(--section-padding);
}

.team-slider {
    padding: 40px 0;
}

.team-card {
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-card:hover .team-placeholder {
    background: var(--dark-bg);
}

.team-placeholder i {
    font-size: 100px;
    color: var(--primary-color);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--dark-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.footer-logo strong {
    color: var(--primary-color);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: var(--dark-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */

/* Desktop Responsive Container Widths */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 1000px;
    }
    
    .nav-list {
        gap: 25px;
    }
    
    .nav-menu {
        gap: 35px;
    }
}

/* Desktop Navigation Adjustments */

@media (min-width: 1025px) {
    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        overflow-y: visible;
        align-items: center;
        border-left: none;
    }
    
    .nav-list {
        flex-direction: row;
        width: auto;
    }
    
    .nav-link {
        display: inline-block;
        font-size: 16px;
        padding: 0;
        border-radius: 0;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        padding-left: 0;
    }
    
    .nav-link::after {
        display: block;
    }
    
    .nav-buttons {
        flex-direction: row;
        width: auto;
    }
    
    .nav-buttons .btn {
        width: auto;
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .nav-close {
        display: none;
    }
    
    .hamburger {
        display: none;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1400px) {
    .nav-buttons .btn-secondary {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        align-items: flex-start;
        gap: 40px;
        border-left: 2px solid var(--primary-color);
        z-index: 999999 !important;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        font-size: 18px;
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--dark-secondary);
        padding-left: 30px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        background: var(--dark-secondary);
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-close:hover {
        background: var(--primary-color);
        color: var(--dark-bg);
        transform: rotate(90deg);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .about-content,
    .tokenomics-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .roadmap-timeline::before {
        left: 40px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        flex-direction: row;
        text-align: left;
    }
    
    .timeline-content {
        padding-left: 100px;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        padding: 80px 20px 30px;
    }
    
    .nav-link {
        font-size: 17px;
    }
    
    /* Better touch targets for mobile */
    .btn {
        min-height: 48px;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }
    
    .logo i {
        font-size: 26px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-img-placeholder,
    .about-img-box {
        width: 280px;
        height: 280px;
    }
    
    .about-img-placeholder i {
        font-size: 80px;
    }
    
    .pulse-ring {
        width: 300px;
        height: 300px;
    }
    
    .nav-menu {
        width: 280px;
        max-width: 90%;
    }

    .tokenChart {
        height: 250px !important;
        width: 250px !important;
    }
}
