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

body {
    font-family: 'Fredoka', cursive;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #1a1a1a;
    overflow-x: hidden;
    font-weight: 500;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 215, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

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

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B4513;
}

.buy-now-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Fredoka', cursive;
    box-shadow: 4px 4px 0px #000000;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #000000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: start;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 600px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    line-height: 0.9;
    background: linear-gradient(135deg, #1a1a1a, #8B4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 3rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Contract Section */
.contract-section {
    margin-bottom: 3rem;
}

.contract-label {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contract-input {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 4px 4px 0px #000000;
}

.contract-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 0.9rem;
    padding: 0.5rem;
    outline: none;
    font-family: 'Fredoka', cursive;
    font-weight: 500;
}

.copy-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Fredoka', cursive;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 3px 3px 0px #000000;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 4px 4px 0px #000000;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0px #000000;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #000000;
}

/* Main Tokaru Character */
.tokaru-main-character {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 550px;
    z-index: 3;
}

.main-character-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    margin: -100px 0;
    z-index: 10;
}

.divider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* How to Buy */
.how-to-buy {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FFD700 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000000;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0px #000000;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 3px 3px 0px #000000;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step p {
    color: #1a1a1a;
    opacity: 0.8;
    line-height: 1.5;
    font-weight: 500;
    font-size: 1rem;
}

/* Tokenomics */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 50%, #FFA500 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pie-chart {
    display: flex;
    justify-content: center;
}

.chart-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        #A0522D 0deg 324deg,
        #CD853F 324deg 342deg,
        #D2691E 342deg 360deg
    );
    position: relative;
}

.chart-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.token-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.color-1 { background: #8B4513; }
.color-2 { background: #A0522D; }
.color-3 { background: #CD853F; }
.color-4 { background: #D2691E; }

/* Roadmap */
.roadmap {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000000;
}

.roadmap-item:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0px #000000;
}

.roadmap-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.roadmap-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-item p {
    color: #1a1a1a;
    opacity: 0.8;
    line-height: 1.5;
    font-weight: 500;
    font-size: 1rem;
}

/* Whitepaper */
.whitepaper {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 50%, #FFD700 100%);
}

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

.whitepaper-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whitepaper-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Platforms */
.platforms {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 50%, #FFA500 100%);
}

.platform-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.platform-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000000;
}

.platform-badge:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0px #000000;
}

.platform-badge img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.platform-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.platform-badge span {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gallery Ticker */
.gallery-ticker {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    overflow: hidden;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(200% + 40px);
}

.ticker-item {
    flex-shrink: 0;
    margin-right: 20px;
    width: 300px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 4px 4px 0px #000000;
    background: rgba(255, 255, 255, 0.1);
}

.ticker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ticker-item:hover .ticker-image {
    transform: scale(1.05);
}

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

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.social-footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    justify-content: center;
    box-shadow: 3px 3px 0px #000000;
}

.social-footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #000000;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .tokaru-main-character {
        height: 450px;
    }
    
    .platform-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left {
        max-width: 100%;
        order: 2;
    }
    
    .tokaru-main-character {
        order: 1;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-circle {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .tokaru-main-character {
        height: 400px;
    }
    
    .platform-badges {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .platform-badge {
        padding: 1.5rem;
    }
    
    .how-to-buy-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roadmap-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-ticker {
        padding: 60px 0;
    }
    
    .ticker-item {
        width: 200px;
        height: 120px;
    }
    
    .ticker-content {
        animation: scroll 15s linear infinite;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-left {
        order: 2;
    }
    
    .tokaru-main-character {
        order: 1;
        height: 350px;
    }
    
    .contract-input {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .chart-circle {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tokaru-main-character {
        height: 350px;
    }
    
    .platform-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .platform-badge {
        padding: 1rem;
    }
    
    .platform-badge img {
        width: 50px;
        height: 50px;
    }
    
    .gallery-ticker {
        padding: 40px 0;
    }
    
    .ticker-item {
        width: 150px;
        height: 100px;
        margin-right: 15px;
    }
    
    .ticker-content {
        animation: scroll 12s linear infinite;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .social-footer {
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .platform-badge {
        padding: 0.8rem;
    }
    
    .platform-badge img {
        width: 40px;
        height: 40px;
    }
    
    .gallery-ticker {
        padding: 30px 0;
    }
    
    .ticker-item {
        width: 120px;
        height: 80px;
        margin-right: 10px;
    }
    
    .ticker-content {
        animation: scroll 10s linear infinite;
    }
}
