﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Patrick Hand', cursive;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #1E90FF 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: cloudFloat 20s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-15px) translateY(5px); }
    75% { transform: translateX(10px) translateY(-5px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #1E90FF 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
    overflow: hidden;
}

#loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: cloudFloat 15s ease-in-out infinite;
}

.loading-content {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* Loading Logo - Updated to use actual logo image */
.loading-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoBounce 1.5s ease-in-out infinite;
    /* Remove all background, border, and pseudo-element styles */
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.loading-logo::before {
    display: none !important;
    content: none !important;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    /* Force display and remove any inherited styles */
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #FF6B35;
    border-right: 4px solid #FF8C00;
    border-bottom: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.loading-text {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Comic Neue', cursive;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 2.5s ease-in-out infinite;
}

.loading-progress {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #FF8C00, #FFD700);
    border-radius: 3px;
    animation: progressBar 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes logoBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes textGlow {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
    100% { text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes progressBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(135, 206, 235, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 19px 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 100px;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb6c1, #90ee90, #87ceeb, #ffb6c1);
    background-size: 200% 100%;
    animation: rainbow 3s linear infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-logo img {
    height: 65px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 12px 16px;
    border-radius: 8px;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(26, 26, 46, 0.8);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(26, 26, 46, 0.9);
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.soon-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    border: 2px solid #1a1a2e;
    font-family: 'Patrick Hand', cursive;
    animation: pulse 2s infinite;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(135, 206, 235, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #1a1a2e;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-btn {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 15px 35px;
    border: 3px solid #1a1a2e;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    position: relative;
    overflow: hidden;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-btn:hover::before {
    transform: translateX(100%);
}



.connect-btn {
    background: #FF8C00;
    color: #1a1a2e;
}

.connect-btn:hover {
    background: #FF7F00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #1E90FF 100%);
    position: relative;
    overflow: hidden;
    transform: none !important;
    transition: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    animation: cloudFloat 20s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-align: center;
}

.hero-description {
    font-size: 1.4rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.4;
}

.token-info-grid {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.info-detail {
    display: block;
    font-size: 1rem;
    font-family: 'Comic Neue', cursive;
    color: #34495e;
    margin-bottom: 5px;
    font-style: italic;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.info-highlight {
    display: block;
    font-size: 1rem;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.hero-cta {
    font-size: 1.3rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

/* Hero Actions Section */
.hero-actions {
    text-align: center;
    margin-bottom: 30px;
}

.check-eligibility-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF8C00;
    color: #1a1a2e;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid #1a1a2e;
    position: relative;
    overflow: hidden;
}

.check-eligibility-btn::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 ease;
}

.check-eligibility-btn:hover::before {
    left: 100%;
}

.check-eligibility-btn:hover {
    background: #FF7F00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.check-eligibility-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 140, 0, 0.3);
}

.check-eligibility-btn i {
    font-size: 1.2rem;
    color: #1a1a2e;
}

.check-eligibility-btn span {
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
    color: #4682B4;
    margin-top: 15px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    opacity: 0.9;
}



.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 90%;
    height: auto;
    max-width: 600px;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    animation: randomFlash 4s ease-in-out infinite;
}

.hero-image:hover img {
    transform: scale(1.1);
    border-color: #00ffff;
    box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, 0 0 90px #00ffff, 0 0 120px #00ffff, inset 0 0 30px rgba(0, 255, 255, 0.5);
}

/* NFT Image Special Effects */
@keyframes randomFlash {
    0% { 
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    25% { 
        border-color: #00ffff;
        box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, 0 0 90px #00ffff, 0 0 120px #00ffff, inset 0 0 30px rgba(0, 255, 255, 0.5);
        transform: scale(1.02);
    }
    50% { 
        border-color: #ff00ff;
        box-shadow: 0 0 30px #ff00ff, 0 0 60px #ff00ff, 0 0 90px #ff00ff, 0 0 120px #ff00ff, inset 0 0 30px rgba(255, 0, 255, 0.5);
        transform: scale(1.05);
    }
    75% { 
        border-color: #ffff00;
        box-shadow: 0 0 30px #ffff00, 0 0 60px #ffff00, 0 0 90px #ffff00, 0 0 120px #ffff00, inset 0 0 30px rgba(255, 255, 0, 0.5);
        transform: scale(1.02);
    }
    100% { 
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
}



@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}



/* Governance Section - Removed, merged with Roadmap */



/* Boats sailing effect for governance section */
.boats-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.boat {
    position: absolute;
    width: 180px;
    height: 110px;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    z-index: 15;
    border: none;
    background: transparent;
    outline: none;
}

.boat img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/* Boats sailing right to left */
.boat-right-to-left {
    top: var(--height, 30%);
    right: 0;
    animation: sailRightToLeft var(--speed, 20s) linear infinite;
    animation-delay: var(--delay, 0s);
}

/* Boats sailing left to right */
.boat-left-to-right {
    top: var(--height, 30%);
    left: 0;
    animation: sailLeftToRight var(--speed, 20s) linear infinite;
    animation-delay: var(--delay, 0s);
}

/* Sailing animations */
@keyframes sailRightToLeft {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-200px);
        opacity: 0;
    }
}

@keyframes sailLeftToRight {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}



@keyframes floatBoat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}



/* Responsive design for boats */
@media (max-width: 768px) {
    .boat {
        width: 80px;
        height: 60px;
    }
    
    .boat-left-to-right {
        top: 20%;
    }
    
    .boat-right-to-left {
        top: 70%;
    }
}

@media (max-width: 480px) {
    .boat {
        width: 60px;
        height: 40px;
    }
    
    .boat-left-to-right {
        top: 15%;
    }
    
    .boat-right-to-left {
        top: 75%;
    }
}

.governance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.governance-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.governance-content h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.governance-content h3 {
    font-size: 1.3rem;
    font-family: 'Patrick Hand', cursive;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.governance-content p {
    font-size: 1.1rem;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.vote-button {
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    color: #1a1a2e;
    border: 3px solid #1a1a2e;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.vote-button:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #f0f8ff, #ffffff);
}

/* NFT Collection Section */
.nft-collection {
    padding: 80px 0;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    position: relative;
    overflow: hidden;
}

.nft-collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.nft-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.nft-row-top {
    /* Fixed position, no animation */
}

.nft-row-bottom {
    /* Fixed position, no animation */
}

.nft-item {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 0px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Removed ::before pseudo-element to avoid interference with neon effect */

.nft-item:hover {
    transform: scale(1.1);
}

.nft-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Slot machine spinning effect */
.nft-item.spinning {
    animation: slotSpin 0.5s linear infinite;
}

.nft-item.winner {
    animation: winnerGlow 1s ease-in-out infinite alternate;
    border: 3px solid #FFD700;
    box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
}

@keyframes slotSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

@keyframes winnerGlow {
    0% { 
        box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 30px #FFD700, 0 0 60px #FFD700;
        transform: scale(1.05);
    }
}

@keyframes randomFlash {
    0% { 
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: none;
        transform: scale(1);
    }
    25% { 
        border-color: #00ffff;
        box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, 0 0 90px #00ffff, 0 0 120px #00ffff, inset 0 0 30px rgba(0, 255, 255, 0.5);
        transform: scale(1.05);
    }
    50% { 
        border-color: #ff00ff;
        box-shadow: 0 0 30px #ff00ff, 0 0 60px #ff00ff, 0 0 90px #ff00ff, 0 0 120px #ff00ff, inset 0 0 30px rgba(255, 0, 255, 0.5);
        transform: scale(1.1);
    }
    75% { 
        border-color: #ffff00;
        box-shadow: 0 0 30px #ffff00, 0 0 60px #ffff00, 0 0 90px #ffff00, 0 0 120px #ffff00, inset 0 0 30px rgba(255, 255, 0, 0.5);
        transform: scale(1.05);
    }
    100% { 
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: none;
        transform: scale(1);
    }
}

@keyframes finalWinner {
    0% { 
        border-color: #00ffff;
        box-shadow: 0 0 40px #00ffff, 0 0 80px #00ffff, 0 0 120px #00ffff, 0 0 160px #00ffff, inset 0 0 40px rgba(0, 255, 255, 0.6);
        transform: scale(1);
    }
    16.66% { 
        border-color: #ff00ff;
        box-shadow: 0 0 40px #ff00ff, 0 0 80px #ff00ff, 0 0 120px #ff00ff, 0 0 160px #ff00ff, inset 0 0 40px rgba(255, 0, 255, 0.6);
        transform: scale(1.05);
    }
    33.33% { 
        border-color: #ffff00;
        box-shadow: 0 0 40px #ffff00, 0 0 80px #ffff00, 0 0 120px #ffff00, 0 0 160px #ffff00, inset 0 0 40px rgba(255, 255, 0, 0.6);
        transform: scale(1.1);
    }
    50% { 
        border-color: #00ff00;
        box-shadow: 0 0 40px #00ff00, 0 0 80px #00ff00, 0 0 120px #00ff00, 0 0 160px #00ff00, inset 0 0 40px rgba(0, 255, 0, 0.6);
        transform: scale(1.15);
    }
    66.66% { 
        border-color: #ff8800;
        box-shadow: 0 0 40px #ff8800, 0 0 80px #ff8800, 0 0 120px #ff8800, 0 0 160px #ff8800, inset 0 0 40px rgba(255, 136, 0, 0.6);
        transform: scale(1.1);
    }
    83.33% { 
        border-color: #8800ff;
        box-shadow: 0 0 40px #8800ff, 0 0 80px #8800ff, 0 0 120px #8800ff, 0 0 160px #8800ff, inset 0 0 40px rgba(136, 0, 255, 0.6);
        transform: scale(1.05);
    }
    100% { 
        border-color: #00ffff;
        box-shadow: 0 0 40px #00ffff, 0 0 80px #00ffff, 0 0 120px #00ffff, 0 0 160px #00ffff, inset 0 0 40px rgba(0, 255, 255, 0.6);
        transform: scale(1);
    }
}

@keyframes rainbowBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Slot Machine Controls */
.slot-machine-controls {
    text-align: center;
    margin-top: 40px;
}

.spin-button {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spin-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #F7931E, #FF6B35);
}

.spin-button:active {
    transform: translateY(-1px);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.winner-display {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    min-height: 40px;
}



/* Roadmap Section */
.roadmap {
    padding: 300px 0 100px;
    background: linear-gradient(135deg, #1E90FF 0%, #4682B4 100%);
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.roadmap h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.roadmap h3 {
    font-size: 1.3rem;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.roadmap-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.roadmap-image {
    width: 100%;
    height: auto;
    max-width: 1000px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    outline: none;
}

.roadmap-image:hover {
    transform: scale(1.02);
}



/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.95), rgba(100, 181, 246, 0.9));
    backdrop-filter: blur(15px);
    padding: 40px 0;
    position: relative;
    border-top: 3px solid #1a1a2e;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb6c1, #90ee90, #87ceeb, #ffb6c1);
    background-size: 200% 100%;
    animation: rainbow 3s linear infinite;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-main h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.footer-main p {
    font-size: 1.1rem;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-cta {
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    color: #1a1a2e;
    border: 3px solid #1a1a2e;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #f0f8ff, #ffffff);
}

.footer-social h3 {
    font-size: 2rem;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #FF6B35, #FF8C00);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 25px;
    color: #0a0a1a;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    min-width: 140px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 2.5rem;
    color: #0a0a1a;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.social-link span {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a0a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.social-link.x-twitter:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    border-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-8px) scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.social-link.x-twitter:hover i {
    color: #000000;
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-link.x-twitter:hover span {
    color: #000000;
    transform: scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.social-link.telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.25), rgba(0, 136, 204, 0.15));
    border-color: rgba(0, 136, 204, 0.7);
}

.social-link.telegram:hover i {
    color: #0088cc;
    transform: scale(1.1);
}

.social-link.telegram:hover span {
    color: #0088cc;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a2e;
    font-size: 0.9rem;
    font-family: 'Patrick Hand', cursive;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(135, 206, 235, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        gap: 15px;
    }
    
    .nav-menu.active .nav-item {
        width: 100%;
    }
    
    .nav-menu.active .nav-link {
        justify-content: center;
        padding: 15px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .nav-buttons.active .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .check-eligibility-btn {
        padding: 15px 28px;
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-top: 12px;
    }
    
    .mission-content h2 {
        font-size: 2.5rem;
    }
    
    .governance-content h2 {
        font-size: 2.5rem;
    }
    
    .media h2 {
        font-size: 2.5rem;
    }
    
    .apparel-content h2 {
        font-size: 2.5rem;
    }
    
    .quick-start-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Professional Notification System */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: notificationSlideIn 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    color: #333;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Notification Types */
.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-warning {
    border-left: 4px solid #ffc107;
}

.notification-info {
    border-left: 4px solid #17a2b8;
}

@keyframes notificationSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
} 

/* Enhanced Info Panel Styles */
.token-info-grid {
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.15) 0%, rgba(173, 216, 230, 0.25) 100%);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.token-info-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FF8E53, #FF6B35);
    border-radius: 25px 25px 0 0;
}

.info-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.info-label {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.8px;
    position: relative;
}

.info-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, transparent);
    border-radius: 1px;
}

.info-value {
    display: block;
    font-size: 1.2rem;
    font-family: 'Comic Neue', cursive;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
}

.info-detail {
    display: block;
    font-size: 1.05rem;
    font-family: 'Comic Neue', cursive;
    color: #34495e;
    margin-bottom: 8px;
    font-style: italic;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    opacity: 0.9;
}

.info-highlight {
    display: block;
    font-size: 1.1rem;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.6px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #FF6B35;
    margin-top: 10px;
}
