/* WOJACK PLATFORM - Dark Live Stream Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial Black', Arial, sans-serif;
    background: linear-gradient(45deg, #000000, #0a1a00, #1a1a00, #000a1a);
    background-size: 400% 400%;
    animation: backgroundShift 10s ease-in-out infinite;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    user-select: none;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #000000, #1a1a00, #000a1a);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-content {
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.hero-image-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: clamp(200px, 25vw, 400px);
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 80px rgba(255, 215, 0, 0.3);
}

.loading-title {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    color: #ffd700;
    text-shadow: 
        0 0 20px #ffd700,
        0 0 40px #ffd700,
        0 0 60px #ffd700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    line-height: 0.9;
}

.loading-subtitle {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: clamp(1.5rem, 6vw, 4rem);
    font-weight: 500;
    color: #00ff00;
    text-shadow: 
        0 0 15px #00ff00,
        0 0 30px #00ff00;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    line-height: 0.9;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #333;
    border-top: 4px solid #00ff00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #00ff00;
    margin-bottom: 2rem;
}

.start-button {
    font-family: 'Space Grotesk', Arial, sans-serif;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: 3px solid #000000;
    border-radius: 15px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: auto;
}

.start-button:hover {
    transform: scale(1.1) translateY(-5px);
    background: linear-gradient(135deg, #FFA500, #FFD700);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.8),
        0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #ffffff;
}

.start-button:active {
    transform: scale(1.05) translateY(-2px);
}

/* Platform Container */
.platform-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #ffd700;
    backdrop-filter: blur(10px);
}

.platform-title h1 {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 600;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    margin: 0;
}

.subtitle {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #00ff00;
    display: block;
}

.platform-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #cccccc;
}

.stat-value {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

/* 2D Canvas Container */
.scene-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 3px solid #ffd700;
    border-top: none;
    background: radial-gradient(circle at center, #000011, #001100, #110000);
}

.bubble-canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    touch-action: none;
}

/* Scene Overlay */
.scene-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.create-token-button {
    font-family: 'Space Grotesk', Arial, sans-serif;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ffd700, #00ff00);
    border: 2px solid #ffffff;
    border-radius: 15px;
    color: #000000;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

.create-token-button:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 0 30px rgba(255, 215, 0, 1);
}

@keyframes glow {
    from { box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); }
    to { box-shadow: 0 0 25px rgba(255, 215, 0, 0.9); }
}

.instructions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #00ff00;
    pointer-events: none;
}

.instructions p {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 5px 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

/* Bottom Controls */
.bottom-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #ffd700;
}

.control-button {
    font-family: 'Poppins', Arial, sans-serif;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(45deg, #1a1a00, #001a00);
    border: 1px solid #666666;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-button:hover {
    background: linear-gradient(45deg, #3a3a00, #003a00);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsiveness for 2D Canvas */
@media (max-width: 768px) {
    .hero-image {
        width: clamp(150px, 30vw, 250px);
    }
    
    .loading-title {
        font-size: clamp(2rem, 10vw, 5rem);
    }
    
    .loading-subtitle {
        font-size: clamp(1rem, 5vw, 2.5rem);
    }
    
    .start-button {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .platform-stats {
        gap: 10px;
    }
    
    .bottom-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .control-button {
        flex: 1;
        min-width: 120px;
    }
    
    .scene-container {
        border: 2px solid #ffd700;
    }
    
    .bubble-canvas {
        touch-action: none;
    }
    
    .create-token-button {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .instructions {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 10px;
    }
    
    .instructions p {
        font-size: 0.7rem;
    }
}

/* Utility Classes */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

/* Bubble Visual Effects (for Canvas reference) */
.bubble-glow {
    filter: drop-shadow(0 0 10px currentColor);
}

.bubble-pulse {
    animation: bubblePulse 1s ease-in-out infinite;
}

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

/* Token Modal */
.token-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #0a1a00, #1a1a00, #000a1a);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #ffd700;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-content h2 {
    font-family: 'Space Grotesk', Arial, sans-serif;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px #ffd700;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-family: 'Poppins', Arial, sans-serif;
    display: block;
    color: #00ff00;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    font-family: 'Poppins', Arial, sans-serif;
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #666666;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.form-group input::placeholder {
    color: #888888;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.create-button {
    font-family: 'Space Grotesk', Arial, sans-serif;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff00, #ffd700);
    border: none;
    border-radius: 12px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    text-transform: uppercase;
}

.create-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

/* Canvas Performance Enhancements */
.bubble-canvas {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Token Details Modal */
.token-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(15px);
    overflow-y: auto;
    padding: 20px;
}

.token-details-content {
    background: linear-gradient(135deg, #0a1a00, #1a1a00, #000a1a);
    border: 3px solid #ffd700;
    border-radius: 25px;
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.5),
        0 0 100px rgba(255, 215, 0, 0.3);
    max-width: 900px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    animation: tokenModalSlideIn 0.4s ease-out;
}

@keyframes tokenModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-100px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.token-details-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5rem;
    color: #ffd700;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-details-close:hover {
    color: #ffffff;
    background: rgba(255, 0, 0, 0.8);
    transform: rotate(90deg);
}

/* Token Header Section */
.token-header {
    display: flex;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid #333333;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(0, 255, 0, 0.1));
}

.token-avatar {
    margin-right: 25px;
}

.token-face {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.token-info {
    flex: 1;
}

.token-name {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 5px 0;
    text-shadow: 0 0 15px #ffd700;
}

.token-ticker {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #00ff00;
    margin: 0 0 15px 0;
    text-shadow: 0 0 10px #00ff00;
}

.token-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.token-price {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
}

.token-change {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
}

.token-change.positive {
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
}

.token-change.negative {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
}

/* Token Stats Section */
.token-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px 30px;
    border-bottom: 2px solid #333333;
}

.stat-box {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #666666;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.stat-box .stat-label {
    font-family: 'Poppins', Arial, sans-serif;
    display: block;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.stat-box .stat-value {
    font-family: 'Space Grotesk', Arial, sans-serif;
    display: block;
    color: #00ff00;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 8px #00ff00;
}

/* Chart Container */
.chart-container {
    padding: 25px 30px;
    border-bottom: 2px solid #333333;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    font-family: 'Space Grotesk', Arial, sans-serif;
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.chart-timeframes {
    display: flex;
    gap: 10px;
}

.timeframe-btn {
    font-family: 'Poppins', Arial, sans-serif;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #666666;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.timeframe-btn:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.timeframe-btn.active {
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
}

.chart-iframe-container {
    width: 100%;
    height: 400px;
    border: 2px solid #666666;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
}

.dexscreener-chart {
    width: 100%;
    height: 100%;
    border: none;
}

/* Trading Interface */
.trading-interface {
    padding: 25px 30px;
    border-bottom: 2px solid #333333;
}

.trading-tabs {
    display: flex;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 5px;
}

.trading-tab {
    font-family: 'Poppins', Arial, sans-serif;
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.trading-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.trading-tab.active {
    background: #ffd700;
    color: #000000;
}

.trading-content {
    position: relative;
}

.trading-panel {
    display: none;
}

.trading-panel.active {
    display: block;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-family: 'Poppins', Arial, sans-serif;
    display: block;
    color: #00ff00;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-group input,
.input-group select {
    font-family: 'Poppins', Arial, sans-serif;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #666666;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.input-group input[readonly] {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    color: #00ff00;
}

.swap-container {
    position: relative;
}

.swap-arrow {
    text-align: center;
    font-size: 2rem;
    color: #ffd700;
    margin: 15px 0;
    animation: pulse 2s ease-in-out infinite;
}

.trade-button {
    font-family: 'Space Grotesk', Arial, sans-serif;
    width: 100%;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: 700;
    border: 3px solid;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 20px;
}

.buy-button {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    border-color: #00ff00;
    color: #000000;
}

.buy-button:hover {
    background: linear-gradient(135deg, #00cc00, #00ff00);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    transform: translateY(-3px);
}

.sell-button {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
    color: #ffffff;
}

.sell-button:hover {
    background: linear-gradient(135deg, #cc0000, #ff0000);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    transform: translateY(-3px);
}

.swap-button {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-color: #ffd700;
    color: #000000;
}

.swap-button:hover {
    background: linear-gradient(135deg, #ffaa00, #ffd700);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    transform: translateY(-3px);
}

/* Action Buttons */
.token-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 25px 30px;
}

.action-button {
    font-family: 'Poppins', Arial, sans-serif;
    padding: 15px 10px;
    background: linear-gradient(45deg, #1a1a00, #001a00);
    border: 2px solid #666666;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.website-btn:hover { border-color: #0066ff; color: #0066ff; }
.telegram-btn:hover { border-color: #0088cc; color: #0088cc; }
.twitter-btn:hover { border-color: #1da1f2; color: #1da1f2; }
.dexscreener-btn:hover { border-color: #ffd700; color: #ffd700; }

/* Mobile Responsiveness for Token Details Modal */
@media (max-width: 768px) {
    .token-details-modal {
        padding: 10px;
    }
    
    .token-details-content {
        max-height: 98vh;
        border-radius: 15px;
    }
    
    .token-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .token-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .token-name {
        font-size: 2rem;
    }
    
    .token-ticker {
        font-size: 1.2rem;
    }
    
    .token-price {
        font-size: 1.5rem;
    }
    
    .token-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .chart-container {
        padding: 20px;
    }
    
    .chart-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .chart-timeframes {
        justify-content: center;
    }
    
    .chart-iframe-container {
        height: 300px;
    }
    
    .trading-interface {
        padding: 20px;
    }
    
    .trading-tabs {
        flex-direction: column;
    }
    
    .trading-tab {
        margin-bottom: 5px;
    }
    
    .token-actions {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .action-button {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .token-details-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .token-name {
        font-size: 1.5rem;
    }
    
    .token-price {
        font-size: 1.2rem;
    }
    
    .token-actions {
        grid-template-columns: 1fr;
    }
} 