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

body {
    font-family: 'Bahnschrift Bold', 'Rajdhani', sans-serif;
    background: #141212;
    color: #fff;
    overflow-x: hidden;
}

/* Entrance Animation Styles */
.entrance-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #141212 0%, #0d0d0d 50%, #1a0000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease-out;
}

.entrance-bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Chart Animation */
.chart-container {
    position: absolute;
    width: 80%;
    height: 60%;
    max-width: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0.3;
}

.chart-line {
    position: relative;
    width: 100%;
    height: 6px;
    background: #00ff00;
    border-radius: 3px;
    transform-origin: left center;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: chartRise 2.5s ease-out, chartCrash 0.8s ease-in 2.5s;
}

.coin-on-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    animation: coinMove 4s ease-in-out;
}

.chart-coin-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #00ff00;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    animation: coinGlow 2s ease-in-out infinite alternate;
}

/* Entrance Text */
.entrance-text {
    text-align: center;
    z-index: 10;
    margin-bottom: 50px;
}

.glitch-text {
    font-family: 'Bahnschrift Bold', monospace;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    animation: glitch 2s infinite;
}

.crash-text {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.coin-text {
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

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

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

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

/* Removed subtitle styles */

/* Loading Bar */
.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 30px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #ff0000);
    width: 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: loadingBar 3.3s ease-out;
}

/* Main Site Styles */
.main-site {
    min-height: 100vh;
    background: linear-gradient(135deg, #141212 0%, #0f0f0f 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Animated Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.8"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.6"/><circle cx="70" cy="30" r="1" fill="white" opacity="0.9"/><circle cx="90" cy="80" r="1" fill="white" opacity="0.7"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.5"/></svg>') repeat;
    background-size: 200px 200px;
    animation: starfield 20s linear infinite;
    z-index: 1;
}

.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="white" opacity="0.4"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.6"/></svg>') repeat;
    background-size: 300px 300px;
    animation: starfield 30s linear infinite reverse;
    z-index: 2;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px 0;
}

.banner-img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.4));
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.coin-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
}

/* Coin Container */
.coin-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-coin-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00ff00;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.6);
    animation: float 3s ease-in-out infinite, coinRotate 10s linear infinite;
    position: relative;
    z-index: 2;
}

.coin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

/* Coin Info */
.coin-info {
    text-align: left;
}

.main-title {
    font-family: 'Bahnschrift Bold', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

/* Removed tagline styles */

/* CA Section */
.ca-section {
    margin-bottom: 40px;
}

.ca-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.ca-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ca-input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(20, 18, 18, 0.8);
    border: 2px solid rgba(0, 255, 0, 0.4);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Bahnschrift Bold', sans-serif;
    transition: all 0.3s ease;
}

.ca-input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.ca-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.copy-btn {
    padding: 15px;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    border: none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.pump-btn, .chart-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-family: 'Bahnschrift Bold', monospace;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.pump-btn {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
}

.pump-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
}

.chart-btn {
    background: linear-gradient(45deg, #333333, #000000);
    color: #fff;
    border: 1px solid #555555;
}

.chart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: linear-gradient(45deg, #444444, #111111);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.twitter-link {
    background: linear-gradient(45deg, #000000, #333333);
    color: #fff;
}

.twitter-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #000000;
}

.community-link {
    background: linear-gradient(45deg, #7289da, #5865f2);
    color: #fff;
}

.community-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.4);
    border-color: #7289da;
}

.social-icon {
    font-size: 1.5rem;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Featured Section */
.featured-section {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    border: 3px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.featured-image:hover {
    transform: scale(1.02);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

/* Info Section */
.info-section {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-title {
    font-family: 'Bahnschrift Bold', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.info-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.info-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

/* Thread Section */
.thread-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid rgba(0, 255, 0, 0.2);
    border-bottom: 2px solid rgba(0, 255, 0, 0.2);
}

.thread-title {
    font-family: 'Bahnschrift Bold', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff00;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

.thread-item {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(20, 18, 18, 0.4);
    border-radius: 15px;
    border-left: 4px solid #00ff00;
    position: relative;
}

.thread-number {
    display: inline-block;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Bahnschrift Bold', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.thread-item p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.thread-item p:last-child {
    margin-bottom: 0;
}

/* Warning Section */
.warning-section {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.warning-text {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #ff0000 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    margin: 0 !important;
}

/* Collage Section */
.collage-section {
    position: relative;
    z-index: 10;
    padding: 60px 20px 80px;
    width: 100%;
    margin: 0 auto;
}

.collage-container {
    position: relative;
    border-radius: 20px;
    background: rgba(20, 18, 18, 0.6);
    padding: 30px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, minmax(200px, 300px));
    gap: 15px;
    width: 100%;
    position: relative;
    transform: rotate(-1deg);
}

.collage-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(20, 18, 18, 0.4);
    border: 2px solid transparent;
    animation: chaosFloat 3s ease-in-out infinite;
    transform: rotate(var(--rotation, 0deg));
}

.collage-item:nth-child(odd) {
    animation-delay: -1s;
    --rotation: 2deg;
}

.collage-item:nth-child(even) {
    animation-delay: -2s;
    --rotation: -3deg;
}

.collage-item:nth-child(3n) {
    animation-delay: -0.5s;
    --rotation: 1deg;
}

.collage-item:nth-child(4n) {
    animation-delay: -1.5s;
    --rotation: -2deg;
}

.collage-item:nth-child(5n) {
    animation-delay: -2.5s;
    --rotation: 4deg;
}

.collage-item:hover {
    transform: scale(1.15) rotate(var(--hover-rotation, 5deg)) translate(5px, -5px);
    border-color: #ff0000;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4), 0 0 20px rgba(0, 255, 0, 0.3);
    z-index: 100;
    animation-play-state: paused;
}

.collage-item:hover:nth-child(odd) {
    --hover-rotation: -8deg;
}

.collage-item:hover:nth-child(even) {
    --hover-rotation: 12deg;
}

.collage-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.collage-item.medium {
    grid-column: span 2;
}

.collage-item.tall {
    grid-row: span 2;
}

.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    min-height: 200px;
}

.collage-item:hover .collage-image {
    transform: scale(1.1);
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(0, 255, 0, 0.2));
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Bahnschrift Bold', sans-serif;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 0, 0, 0.7);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.modal-nav {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
}

.modal-nav:hover {
    background: rgba(0, 255, 0, 0.7);
    transform: scale(1.1);
}

.modal-nav.prev {
    margin-left: -60px;
}

.modal-nav.next {
    margin-right: -60px;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

/* Animations */
@keyframes chartRise {
    0% { 
        transform: scaleX(0) scaleY(1); 
        background: #00ff00;
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
    30% { 
        transform: scaleX(0.3) scaleY(8); 
        background: #00ff00;
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    }
    70% { 
        transform: scaleX(0.7) scaleY(25); 
        background: #00ff00;
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    }
    100% { 
        transform: scaleX(1) scaleY(30); 
        background: #00ff00;
        box-shadow: 0 0 25px rgba(0, 255, 0, 1);
    }
}

@keyframes chartCrash {
    0% { 
        transform: scaleX(1) scaleY(30); 
        background: #ff0000;
        box-shadow: 0 0 25px rgba(255, 0, 0, 1);
    }
    50% { 
        transform: scaleX(1) scaleY(5); 
        background: #ff0000;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
    100% { 
        transform: scaleX(1) scaleY(0.5); 
        background: #cc0000;
        box-shadow: 0 0 10px rgba(204, 0, 0, 0.6);
    }
}

@keyframes coinMove {
    0% { 
        left: 0; 
        bottom: 0; 
        transform: scale(1);
    }
    30% { 
        left: 30%; 
        bottom: 180px; 
        transform: scale(1.2);
    }
    70% { 
        left: 70%; 
        bottom: 400px; 
        transform: scale(1.5) rotate(180deg);
    }
    75% { 
        left: calc(100% - 60px); 
        bottom: 450px; 
        transform: scale(1.5) rotate(180deg);
    }
    100% { 
        left: calc(100% - 60px); 
        bottom: 0; 
        transform: scale(1) rotate(360deg);
    }
}

@keyframes coinGlow {
    0% { 
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
        border-color: #00ff00;
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 255, 0, 1);
        border-color: #ffff00;
    }
    100% { 
        box-shadow: 0 0 45px rgba(255, 0, 0, 1);
        border-color: #ff0000;
    }
}

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

@keyframes glitch-1 {
    0% { clip: rect(132px, 9999px, 142px, 0); transform: translateX(-2px); }
    5% { clip: rect(12px, 9999px, 62px, 0); }
    10% { clip: rect(85px, 9999px, 105px, 0); transform: translateX(2px); }
    15% { clip: rect(40px, 9999px, 70px, 0); }
    20% { clip: rect(25px, 9999px, 35px, 0); transform: translateX(-2px); }
    25% { clip: rect(65px, 9999px, 75px, 0); }
    30% { clip: rect(95px, 9999px, 125px, 0); transform: translateX(2px); }
    100% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes glitch-2 {
    0% { clip: rect(12px, 9999px, 22px, 0); transform: translateX(2px); }
    5% { clip: rect(52px, 9999px, 82px, 0); }
    10% { clip: rect(5px, 9999px, 15px, 0); transform: translateX(-2px); }
    15% { clip: rect(75px, 9999px, 95px, 0); }
    20% { clip: rect(35px, 9999px, 45px, 0); transform: translateX(2px); }
    25% { clip: rect(115px, 9999px, 135px, 0); }
    30% { clip: rect(55px, 9999px, 65px, 0); transform: translateX(-2px); }
    100% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes loadingBar {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

@keyframes chaosFloat {
    0% { 
        transform: translateY(0) rotate(var(--rotation, 0deg)) scaleX(1);
    }
    25% { 
        transform: translateY(-15px) rotate(calc(var(--rotation, 0deg) + 3deg)) scaleX(0.95);
    }
    50% { 
        transform: translateY(-25px) rotate(calc(var(--rotation, 0deg) - 2deg)) scaleX(1.05);
    }
    75% { 
        transform: translateY(-10px) rotate(calc(var(--rotation, 0deg) + 4deg)) scaleX(0.98);
    }
    100% { 
        transform: translateY(0) rotate(var(--rotation, 0deg)) scaleX(1);
    }
}

@keyframes coinRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3;
        background: radial-gradient(circle, rgba(0, 255, 0, 0.3) 0%, transparent 70%);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.6;
        background: radial-gradient(circle, rgba(0, 255, 0, 0.5) 0%, transparent 70%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .coin-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-coin-img {
        width: 250px;
        height: 250px;
    }
    
    .coin-glow {
        width: 300px;
        height: 300px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .ca-input-container {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-links {
        justify-content: center;
        gap: 20px;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .collage-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, minmax(150px, 200px));
        gap: 15px;
    }
    
    .modal-nav {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
    
    .modal-nav.prev {
        margin-left: -50px;
    }
    
    .modal-nav.next {
        margin-right: -50px;
    }
}

@media (max-width: 480px) {
    .glitch-text {
        font-size: 2rem;
    }
    
    .main-coin-img {
        width: 200px;
        height: 200px;
    }
    
    .coin-glow {
        width: 250px;
        height: 250px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .chart-container {
        width: 95%;
    }
    
    .pump-btn, .chart-btn {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .info-text p {
        font-size: 1rem;
    }
    
    .featured-image {
        max-height: 250px;
    }
    
    .thread-item {
        padding: 15px;
    }
    
    .thread-title {
        font-size: 1.3rem;
    }
    
    .thread-item p {
        font-size: 0.95rem;
    }
    
    .collage-section {
        padding: 40px 10px;
    }
    
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(7, minmax(120px, 150px));
        gap: 10px;
    }
    
    .collage-container {
        padding: 15px;
    }
    
    .modal-nav.prev {
        margin-left: -40px;
    }
    
    .modal-nav.next {
        margin-right: -40px;
    }
} 