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

body {
    font-family: 'Fredoka One', cursive;
    background-color: #1a1a1a;
    color: #f5f5f5;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 50%, #3d2817 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 900;
    color: #f5f5f5;
    text-shadow: 3px 3px 0px #8B4513, 6px 6px 0px #000;
    line-height: 0.9;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #D2B48C;
    margin-bottom: 30px;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, #2c2c2c, #404040);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.btn-tertiary {
    background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(245, 245, 245, 0.4);
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 245, 245, 0.6);
}

/* Logo Container */
.logo-container {
    position: relative;
    width: 350px;
    height: 350px;
    animation: bounce 2s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(139, 69, 19, 0.4));
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #D2B48C;
    font-size: 1rem;
    animation: pulse 2s infinite;
    z-index: 2;
}

/* Section Styles */
.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #f5f5f5;
    text-shadow: 2px 2px 0px #8B4513;
}

.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #D2B48C;
    margin-bottom: 30px;
}

.bone-decoration {
    font-size: 3rem;
    animation: rotate 3s infinite linear;
}

.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.token-item {
    background: rgba(139, 69, 19, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #8B4513;
    transition: transform 0.3s ease;
}

.token-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.token-item h3 {
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 15px;
}

.token-item p {
    font-size: 1.2rem;
    color: #D2B48C;
}

.roadmap {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 15px;
    border-left: 5px solid #8B4513;
    transition: transform 0.3s ease;
}

.roadmap-item:hover {
    transform: translateX(10px);
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.roadmap-item h3 {
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 10px;
}

.roadmap-item p {
    color: #D2B48C;
    font-size: 1rem;
}

.community {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
}

.community-content {
    text-align: center;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: rgba(139, 69, 19, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: #f5f5f5;
    transition: all 0.3s ease;
    border: 2px solid #8B4513;
    min-width: 150px;
}

.community-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    color: #D2B48C;
}

.community-link .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.running-dog {
    font-size: 3rem;
    animation: runAround 4s infinite linear;
}

.footer {
    padding: 50px 0;
    background: #0d0d0d;
    border-top: 3px solid #8B4513;
}

.footer-content {
    text-align: center;
}

.disclaimer {
    font-size: 1rem;
    color: #D2B48C;
    margin-bottom: 20px;
}

.contract-address {
    color: #f5f5f5;
}

.contract-address code {
    background: rgba(139, 69, 19, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    color: #D2B48C;
    border: 1px solid #8B4513;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes wiggle {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes runAround {
    0% { transform: translateX(-100px); }
    50% { transform: translateX(100px) scaleX(-1); }
    100% { transform: translateX(-100px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .logo-container {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-item {
        flex-direction: column;
        text-align: center;
    }
    
    .phase-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about, .tokenomics, .roadmap, .community {
        padding: 60px 0;
    }
}