:root {
    --primary-blue: #2454FF;
    --dark-blue: #1E4BDF;
    --light-blue: #4D7AFF;
    --ocean-blue: #2454FF;
    --orange: #FF6B35;
    --orange-dark: #E55A2B;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --gradient-ocean: linear-gradient(180deg, #2454FF 0%, #1E4BDF 100%);
    --gradient-deep: linear-gradient(180deg, #1E4BDF 0%, #1240B8 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--ocean-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title.center {
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(36, 84, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-ocean);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.bubble-1 { width: 100px; height: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.bubble-2 { width: 60px; height: 60px; top: 60%; left: 20%; animation-delay: 1s; }
.bubble-3 { width: 80px; height: 80px; top: 40%; right: 15%; animation-delay: 2s; }
.bubble-4 { width: 40px; height: 40px; top: 70%; right: 25%; animation-delay: 3s; }
.bubble-5 { width: 120px; height: 120px; bottom: 10%; left: 40%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotate(5deg); opacity: 0.8; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    font-size: 1.8rem;
    color: var(--orange);
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--ocean-blue);
}

.contract-address {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ca-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 10px;
}

.ca-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 10px;
}

#contract-text {
    font-family: monospace;
    font-size: 0.95rem;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: var(--orange-dark);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-main {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

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

.hero-simple {
    justify-content: center;
    text-align: center;
}

.hero-container-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hero-image-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-hero {
    width: 450px;
    height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.hero-title-big {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.ca-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.ca-label {
    font-size: 1.2rem;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 2px;
}

.ca-address {
    font-size: 0.95rem;
    color: var(--white);
    font-family: 'Courier New', monospace;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.ca-address:hover {
    color: var(--orange);
    text-decoration: underline;
}

.copy-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: #ff8c00;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mascot-hero {
        width: 250px;
        height: 250px;
    }
    
    .hero-title-big {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .ca-box {
        padding: 12px 20px;
        gap: 10px;
    }
    
    .ca-address {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .mascot-hero {
        width: 200px;
        height: 200px;
    }
    
    .hero-title-big {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .ca-box {
        padding: 10px 15px;
        flex-direction: column;
        gap: 8px;
    }
    
    .ca-address {
        font-size: 0.65rem;
    }
    
    .ca-label {
        font-size: 1rem;
    }
}

.image-section {
    background: url('../images/about-background.png') center center / cover no-repeat;
    min-height: 100vh;
    position: relative;
}

.about-content-section {
    background: var(--gradient-deep);
    padding: 100px 0;
}

.about-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    display: none;
}

.about-content {
    max-width: 700px;
    background: linear-gradient(145deg, rgba(36, 84, 255, 0.95), rgba(30, 75, 223, 0.9));
    padding: 50px;
    border-radius: 30px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-content:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
    box-shadow: 
        0 50px 80px rgba(0, 0, 0, 0.5),
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.about-mascot {
    max-width: 350px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.facts-section {
    background: var(--primary-blue);
    padding: 100px 0;
}

.facts-subtitle {
    display: block;
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.facts-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(200, 220, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: rgba(180, 210, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(180, 210, 255, 0.3);
}

.faq-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 30px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .facts-title {
        font-size: 2.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }
}

.section-divider {
    background: #0a1a3a;
    position: relative;
    height: 100px;
    overflow: hidden;
}

.divider-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.divider-wave svg {
    width: 100%;
    height: 100%;
}

.howto-section {
    background: url('../images/howto-background.png') center center / cover no-repeat;
    position: relative;
    padding: 150px 0;
}

.howto-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.howto-section .container {
    position: relative;
    z-index: 1;
}

.howto-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.howto-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.howto-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.howto-image {
    text-align: center;
}

.rocket-mascot {
    max-width: 300px;
    animation: rocket 3s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.community-section {
    background: var(--ocean-blue);
    text-align: center;
}

.community-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.community-banner-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.community-banner-layer {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 30px;
    z-index: 1;
}

.community-banner-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.community-banner-container:hover .community-banner-img {
    transform: translateY(-10px) scale(1.02);
}

.community-banner-container:hover .community-banner-layer {
    transform: translate(-5px, 5px);
}

.community-info {
    width: 100%;
}

.community-desc {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.social-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--orange);
}

.social-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 15px;
}

.gallery-section {
    background: var(--gradient-deep);
    text-align: center;
}

.gallery-desc {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticker-section {
    background: #1A1A1A;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-wrapper {
    display: flex;
    width: fit-content;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

.ticker-content span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 2px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer {
    background: #1240B8;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-mascot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 800;
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--orange);
}

.footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-description {
        margin: 30px auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .tokenomics-grid,
    .howto-grid,
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(36, 84, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .title-line {
        font-size: 2.8rem;
    }
    
    .title-sub {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .tokenomics-grid,
    .howto-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 2.2rem;
    }
    
    .mascot-main {
        max-width: 300px;
    }
    
    .contract-address {
        padding: 15px;
    }
    
    .ca-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-btn {
        width: 100%;
    }
}