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

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.4;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    padding: 20px 0;
    width: 100%;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    position: relative;
    animation: float 3s ease-in-out infinite;
    letter-spacing: 0.2em;
    word-break: break-word;
    line-height: 1.1;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    word-wrap: break-word;
    line-height: 1.2;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    word-wrap: break-word;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: fit-content;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* TON Branding */
.ton-branding {
    margin-top: 2rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.ton-powered {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 20px;
    color: #0088cc;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.ton-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.ton-distribution {
    text-align: center;
    margin-top: 2rem;
}

.ton-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, rgba(0, 136, 204, 0.1), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 25px;
    color: #0088cc;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.ton-symbol {
    font-size: 1.3rem;
    animation: rotate 3s linear infinite;
}

/* Contract Address */
.contract-address {
    margin-top: 1.5rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.ca-container {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.ca-label {
    color: #ffd700;
    font-weight: 600;
    white-space: nowrap;
}

.ca-value {
    color: #ffffff;
    font-weight: 400;
    word-break: break-all;
    max-width: 300px;
}

.ca-copy {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ca-copy:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.1);
}



/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    line-height: 1.2;
}

/* Lore Section */
.lore {
    background: rgba(255, 215, 0, 0.05);
}

/* Max Portrait */
.max-portrait {
    text-align: center;
    margin-bottom: 3rem;
}

.portrait-container {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

.max-face {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.redaction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 0, 0.15) 2px,
            rgba(255, 0, 0, 0.15) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 0, 0.15) 2px,
            rgba(255, 0, 0, 0.15) 4px
        );
    animation: redaction-flicker 2s ease-in-out infinite;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

@keyframes redaction-flicker {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

.max-moment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: slideInRight 0.8s ease-out 1.2s both;
}

.max-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.max-text {
    color: #ffd700;
    font-weight: 600;
    font-style: italic;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ffd700, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.timeline-item:nth-child(even) {
    animation: slideInRight 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

.timeline-date {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #ffd700;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
}

.timeline-content h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: #ffffff;
    font-size: 1rem;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tokenomics-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
}

.tokenomics-item.highlight {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-color: #ffd700;
}

.tokenomics-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tokenomics-item p {
    color: #cccccc;
}

/* Pizza Chart */
.pizza-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    position: relative;
}

.pizza-slice {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ffd700 calc(var(--percentage) * 3.6deg),
        transparent calc(var(--percentage) * 3.6deg)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    animation: rotate 10s linear infinite;
}

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

/* Quotes Section */
.quotes {
    background: rgba(255, 215, 0, 0.05);
}

.quotes-carousel {
    position: relative;
    height: 200px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.quote.active {
    opacity: 1;
    transform: translateY(0);
}

.quote p {
    font-size: 2rem;
    font-style: italic;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.quote-author {
    color: #cccccc;
    font-size: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #ffd700;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.stats-subtitle {
    text-align: center;
    color: #ffffff;
    font-size: 1.4rem;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 400;
}

/* Gallery Section */
.gallery {
    background: rgba(255, 215, 0, 0.05);
}

.gallery-subtitle {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

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

 .gallery-item:hover img {
     transform: scale(1.05);
 }
 
 /* Load More Button */
 .load-more-container {
     text-align: center;
     margin-top: 3rem;
     opacity: 0;
     animation: fadeInUp 1s ease-out 0.5s forwards;
 }
 
 .load-more-btn {
     background: linear-gradient(45deg, #ffd700, #ff6b35);
     color: #000;
     border: none;
     padding: 15px 40px;
     font-size: 1.1rem;
     font-weight: 700;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-family: 'Orbitron', monospace;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     position: relative;
     overflow: hidden;
 }
 
 .load-more-btn::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: width 0.6s, height 0.6s;
 }
 
 .load-more-btn:hover::before {
     width: 300px;
     height: 300px;
 }
 
 .load-more-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
 }
 
 .load-more-btn:active {
     transform: translateY(0);
 }
 
 .load-more-btn.loading {
     background: rgba(255, 215, 0, 0.3);
     cursor: not-allowed;
     pointer-events: none;
 }
 
 .load-more-btn.loading::after {
     content: '...';
     animation: loading-dots 1.5s infinite;
 }
 
 @keyframes loading-dots {
     0%, 20% { content: '.'; }
     40% { content: '..'; }
     60%, 100% { content: '...'; }
 }

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.disclaimer {
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .timeline-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-date {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        margin-left: 70px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .logo {
        font-size: 4rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-title {
        font-size: 2.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .ton-powered {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .ton-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-date {
        left: 20px;
        transform: none;
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .timeline-content {
        margin-left: 60px !important;
        margin-right: 0 !important;
        padding: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
        word-wrap: break-word;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tokenomics-item {
        padding: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .portrait-container {
        width: 180px;
        height: 180px;
    }
    
    .quote p {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .quotes-carousel {
        height: 150px;
    }
    
    .pizza-chart {
        height: 200px;
    }
    
    .pizza-slice {
        width: 150px;
        height: 150px;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
         .gallery-subtitle {
         font-size: 1.1rem;
         word-wrap: break-word;
         overflow-wrap: break-word;
     }
     
     .load-more-btn {
         padding: 12px 30px;
         font-size: 1rem;
     }
    
    .stats-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .ca-container {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        gap: 0.6rem;
    }
    
    .ca-value {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .logo {
        font-size: 3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .ton-powered {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .ton-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .timeline-content {
        margin-left: 50px !important;
        padding: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
        word-wrap: break-word;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stats-subtitle {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .quote p {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .portrait-container {
        width: 150px;
        height: 150px;
    }
    
    .pizza-slice {
        width: 120px;
        height: 120px;
        font-size: 0.7rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
         .gallery-subtitle {
         font-size: 1rem;
         word-wrap: break-word;
         overflow-wrap: break-word;
     }
     
     .load-more-btn {
         padding: 10px 25px;
         font-size: 0.9rem;
     }
    
    .tokenomics-item {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .ca-container {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.5rem;
    }
    
    .ca-value {
        max-width: 200px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .logo {
        font-size: 2.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quote p {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .timeline-content {
        margin-left: 35px !important;
        padding: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-date {
        left: 10px;
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .portrait-container {
        width: 120px;
        height: 120px;
    }
    
    .pizza-slice {
        width: 100px;
        height: 100px;
        font-size: 0.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .tokenomics-item {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .stats-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
} 