/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #695b1b;
    --secondary-purple: #8a7c2b;
    --mint-green: #7fffd4;
    --light-mint: #b8f5e6;
    --magenta: #ffd000;
    --light-magenta: #ffd000;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #2e290b;
    --card-bg: rgba(105, 100, 27, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-purple) 100%);
    color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(46, 44, 11, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--mint-green), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: var(--mint-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--mint-green), var(--magenta));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Initial Screen */
.initial-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.initial-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.initial-logo {
    margin-bottom: 2rem;
    animation: bounce 3s ease-in-out infinite;
}

.initial-logo-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 217, 0, 0.5);
    filter: drop-shadow(0 0 20px var(--magenta));
    margin-bottom: 1rem;
}

.initial-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--mint-green), var(--magenta), var(--light-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 217, 0, 0.5);
    margin-bottom: 1rem;
}

.initial-subtitle {
    font-size: 1.5rem;
    color: var(--mint-green);
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.shake-ass-btn {
    background: linear-gradient(45deg, var(--mint-green), var(--magenta));
    color: var(--white);
    padding: 2rem 4rem;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 50px rgba(255, 217, 0, 0.5);
    border: 3px solid var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
    letter-spacing: 3px;
}

.shake-ass-btn:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 217, 0, 0.5);
    background: linear-gradient(45deg, var(--magenta), var(--mint-green));
}

.shake-ass-btn:active {
    transform: scale(0.95);
    box-shadow: 0 10px 30px rgba(255, 217, 0, 0.5);
}

.shake-ass-btn i {
    font-size: 2.5rem;
    animation: musicPulse 1s infinite;
}

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

@keyframes musicPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.main-content {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.main-content.show {
    opacity: 1;
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--mint-green), var(--magenta));
    border-radius: 10px;
    border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--magenta), var(--mint-green));
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    overflow: hidden;
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(46, 42, 11, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Slap Button Styles */
.slap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
}

.slap-button {
    font-size: 6rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: handSlap 2s infinite;
    filter: drop-shadow(0 0 20px var(--magenta));
    pointer-events: auto;
}

.slap-button:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 30px var(--magenta));
}

.slap-button:active {
    transform: scale(0.8);
    filter: drop-shadow(0 0 40px var(--magenta));
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 217, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 217, 0, 0.8), 0 0 30px rgba(255, 208, 0, 0.3);
    }
}

@keyframes handSlap {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-15deg) scale(1.1);
    }
    50% {
        transform: rotate(0deg) scale(1.2);
    }
    75% {
        transform: rotate(15deg) scale(1.1);
    }
}

/* Slap effect animation */
.slap-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--magenta);
    text-shadow: 0 0 20px var(--magenta);
    animation: slapBounce 0.5s ease-out;
    pointer-events: none;
    z-index: 5;
}

@keyframes slapBounce {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

.hero-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--magenta));
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.hero-image:hover {
    filter: drop-shadow(0 0 30px var(--magenta)) brightness(1.1);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-8px) rotate(1deg);
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--mint-green), var(--magenta), var(--light-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 217, 0, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--mint-green);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(127, 255, 212, 0.5);
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-mint);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(184, 245, 230, 0.5);
    position: relative;
    z-index: 3;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.stat {
    text-align: center;
    background: rgba(46, 44, 11, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 238, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--magenta);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px rgba(255, 217, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-mint);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--mint-green);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 3;
    background: rgba(46, 42, 11, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 217, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--mint-green), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth Section Transitions */
section {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section:hover {
    transform: translateY(-5px);
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-purple));
    z-index: 1;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.tokenomics-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 255, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 251, 0, 0.2), transparent);
    transition: left 0.5s;
}

.tokenomics-card:hover::before {
    left: 100%;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 238, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: var(--mint-green);
    margin-bottom: 1rem;
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--magenta);
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--light-mint);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-purple) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-mint);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--mint-green);
    font-weight: 500;
}

.feature i {
    font-size: 1.5rem;
    color: var(--magenta);
}

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

.about-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 238, 0, 0.4);
    animation: float 4s ease-in-out infinite;
}

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

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-purple));
    z-index: 1;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.social-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 230, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--mint-green), var(--magenta));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-card:hover::before {
    opacity: 0.1;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 230, 0, 0.3);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.telegram i { color: #0088cc; }
.twitter i { color: #1da1f2; }
.instagram i { color: #e4405f; }
.tiktok i { color: #000000; }

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--light-mint);
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-purple) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    z-index: 1;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.roadmap-item {
    position: relative;
}

.roadmap-phase {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 230, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-phase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 208, 0, 0.3);
}

.roadmap-phase h3 {
    font-size: 2rem;
    color: var(--mint-green);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.roadmap-phase p {
    color: var(--magenta);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.roadmap-phase ul {
    list-style: none;
}

.roadmap-phase li {
    padding: 0.5rem 0;
    color: var(--light-mint);
    position: relative;
    padding-left: 1.5rem;
}

.roadmap-phase li::before {
    content: '💩';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--magenta);
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2rem;
    background: linear-gradient(45deg, var(--mint-green), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--light-mint);
    line-height: 1.6;
}

.footer-section h3 {
    color: var(--mint-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

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

.footer-links a:hover {
    color: var(--magenta);
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    color: var(--light-mint);
}

.info-value {
    color: var(--magenta);
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 230, 0, 0.3);
    padding-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--magenta);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 100vw;
        height: 100vh;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slap-button {
        font-size: 4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 100vw;
        height: 100vh;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }
    
    .slap-button {
        font-size: 3rem;
    }
    
    .initial-title {
        font-size: 3rem;
    }
    
    .initial-subtitle {
        font-size: 1.2rem;
    }
    
    .shake-ass-btn {
        padding: 1.5rem 3rem;
        font-size: 1.5rem;
    }
    
    .shake-ass-btn i {
        font-size: 2rem;
    }
    
    .initial-title {
        font-size: 2.5rem;
    }
    
    .initial-subtitle {
        font-size: 1rem;
    }
    
    .shake-ass-btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
    
    .shake-ass-btn i {
        font-size: 1.5rem;
    }
} 