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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #ffd700;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    --shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 30px;
}

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-poop,
.floating-gold,
.floating-rocket {
    position: absolute;
    font-size: 48px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-poop {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-gold {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-rocket {
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

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

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 107, 53, 0.6); }
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.hero-image {
    margin-top: 40px;
}

.mascot-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
                var(--gradient) border-box;
    animation: spin 10s linear infinite;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-color);
}

.feature-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 20px;
}

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

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Presale Section */
.presale {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    position: relative;
}

.sale-banner {
    text-align: center;
    margin-bottom: 50px;
}

.status-badge {
    display: inline-block;
    padding: 10px 30px;
    background: var(--gradient);
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    animation: pulse 2s infinite;
}

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

.sale-main {
    max-width: 900px;
    margin: 0 auto;
}

.contract-display {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.2);
}

.contract-label {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 20px;
}

.contract-address-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.address-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    word-break: break-all;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-copy-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-copy-large svg {
    width: 20px;
    height: 20px;
}

.contract-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 20px;
}

.sale-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.detail-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.detail-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.detail-card h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Orbitron', monospace;
}

.detail-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.sale-instructions {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
}

.sale-instructions h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.instruction-list {
    list-style: none;
    counter-reset: step;
    margin-bottom: 30px;
}

.instruction-list li {
    counter-increment: step;
    position: relative;
    padding-left: 50px;
    padding-bottom: 20px;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
}

.instruction-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.4);
    border-radius: 15px;
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 600;
    animation: warningPulse 2s infinite;
}

@keyframes warningPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
    50% { 
        box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.3);
    }
}

.warning-box span:first-child {
    font-size: 28px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}


/* Tokenomics Section */
.tokenomics {
    padding: 80px 0;
    background: var(--dark-bg);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li span {
    color: var(--text-secondary);
}

.info-list li strong {
    color: var(--secondary-color);
}

.tax-structure {
    margin-top: 20px;
}

.tax-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 18px;
}

.tax-label {
    color: var(--text-secondary);
}

.tax-value {
    color: var(--secondary-color);
    font-weight: 700;
}

.tax-breakdown {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.tax-breakdown p {
    margin: 5px 0;
}

.chart-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}

.distribution h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.distribution-info {
    text-align: center;
    margin-bottom: 40px;
}

.info-highlight {
    margin-bottom: 30px;
}

.highlight-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary-color);
    font-family: 'Orbitron', monospace;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.highlight-label {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.distribution-details {
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.distribution-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

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

.token-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.token-feature:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 36px;
    animation: bounce 2s infinite;
}

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

.token-feature span {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 600;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.roadmap-item {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.roadmap-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.roadmap-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.roadmap-item li {
    padding: 8px 0;
    color: var(--text-secondary);
}

/* Community Section */
.community {
    padding: 80px 0;
    background: var(--dark-bg);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-mascot {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

.community-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--card-bg);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #000;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-brand h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

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

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

.footer-disclaimer {
    text-align: right;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 5px 0;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        border: 1px solid rgba(255, 107, 53, 0.2);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 107, 53, 0.1);
    }
    
    .language-switcher {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 30px;
    }
    
    .mascot-image {
        width: 250px;
        height: 250px;
    }
    
    /* Features Section */
    .features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Presale Section */
    .presale {
        padding: 60px 0;
    }
    
    .sale-banner {
        margin-bottom: 30px;
    }
    
    .contract-display {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .contract-label {
        font-size: 16px;
    }
    
    .contract-address-large {
        padding: 20px 15px;
    }
    
    .address-text {
        font-size: 14px;
        word-break: break-all;
        line-height: 1.6;
    }
    
    .btn-copy-large {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .sale-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-card {
        padding: 25px 20px;
    }
    
    .detail-icon {
        font-size: 36px;
    }
    
    .detail-main {
        font-size: 20px;
    }
    
    .sale-instructions {
        padding: 30px 20px;
    }
    
    .instruction-list li {
        padding-left: 45px;
        font-size: 15px;
    }
    
    .instruction-list li::before {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .warning-box {
        padding: 15px;
        font-size: 13px;
    }
    
    .warning-box span:first-child {
        font-size: 24px;
    }
    
    /* Tokenomics Section */
    .tokenomics {
        padding: 60px 0;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .tax-structure {
        font-size: 14px;
    }
    
    .token-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Roadmap Section */
    .roadmap {
        padding: 60px 0;
    }
    
    .roadmap-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .roadmap-item {
        padding: 25px 20px;
    }
    
    /* Community Section */
    .community {
        padding: 60px 0;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .community-mascot {
        max-width: 300px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .mascot-image {
        width: 200px;
        height: 200px;
    }
    
    .floating-poop,
    .floating-gold,
    .floating-rocket {
        font-size: 32px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Features */
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-image {
        width: 150px;
        height: 150px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* Presale */
    .status-badge {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .contract-display {
        padding: 20px 10px;
    }
    
    .address-text {
        font-size: 12px;
    }
    
    .btn-copy-large {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .btn-copy-large svg {
        width: 16px;
        height: 16px;
    }
    
    .detail-card {
        padding: 20px 15px;
    }
    
    .detail-card h4 {
        font-size: 16px;
    }
    
    .detail-main {
        font-size: 18px;
    }
    
    .detail-sub {
        font-size: 12px;
    }
    
    .sale-instructions h3 {
        font-size: 20px;
    }
    
    .instruction-list li {
        font-size: 14px;
        padding-left: 40px;
    }
    
    /* Tokenomics */
    .info-card h3 {
        font-size: 20px;
    }
    
    .info-list {
        font-size: 14px;
    }
    
    .highlight-number {
        font-size: 28px;
    }
    
    .highlight-label {
        font-size: 16px;
    }
    
    .token-feature {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 28px;
    }
    
    .token-feature span {
        font-size: 12px;
    }
    
    /* Roadmap */
    .roadmap-item h3 {
        font-size: 20px;
    }
    
    .roadmap-item li {
        font-size: 14px;
    }
    
    .roadmap-icon {
        font-size: 36px;
    }
    
    /* Community */
    .community-text {
        font-size: 20px;
    }
    
    .social-link {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Language Switcher */
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Navigation Logo */
    .logo {
        font-size: 24px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 28px;
    }
    
    .address-text {
        font-size: 11px;
    }
    
    .btn {
        font-size: 14px;
        padding: 14px 20px;
    }
}