/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    background-color: #fc8c03;
    color: #000000;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 20px 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

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

.logo h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e50914;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.search-btn, .profile-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-btn:hover, .profile-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ffffff;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background-color: #e50914;
    color: white;
}

.btn-primary:hover {
    background-color: #b8070f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-video {
    flex: 1;
    max-width: 500px;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Market Section - Price Widget & News Ticker */
.market-section {
    background: linear-gradient(135deg, #2a1810, #1a0f08);
    padding: 30px 0;
    border-top: 3px solid #fc8c03;
    border-bottom: 3px solid #fc8c03;
    margin: 20px 0;
}

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

.price-widget {
    background: linear-gradient(145deg, #3a2817, #2a1810);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(252, 140, 3, 0.1);
    border: 2px solid rgba(252, 140, 3, 0.3);
}

.price-header {
    text-align: center;
    margin-bottom: 20px;
}

.price-header h4 {
    color: #fc8c03;
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-display {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 20px;
    align-items: center;
}

.price-main {
    text-align: center;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fc8c03;
    text-shadow: 0 0 10px rgba(252, 140, 3, 0.5);
}

.price-change {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 5px;
}

.price-change.positive {
    color: #4ade80;
}

.price-change.negative {
    color: #ef4444;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-stat {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    background: rgba(252, 140, 3, 0.1);
    border-radius: 8px;
    border-left: 3px solid #fc8c03;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.stat-value {
    color: #fc8c03;
    font-weight: bold;
}

.price-chart {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(252, 140, 3, 0.2);
}

/* News Ticker */
.news-ticker-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-ticker-header {
    text-align: center;
    margin-bottom: 15px;
}

.news-ticker-header h4 {
    color: #fc8c03;
    font-size: 1.3rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-ticker {
    background: linear-gradient(90deg, #1a0f08, #2a1810, #1a0f08);
    border: 2px solid #fc8c03;
    border-radius: 10px;
    overflow: hidden;
    height: 50px;
    position: relative;
    box-shadow: 0 4px 15px rgba(252, 140, 3, 0.2);
}

.ticker-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll-ticker 60s linear infinite;
    white-space: nowrap;
}

.news-item {
    display: inline-block;
    padding: 0 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

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

/* Spin Wheel Giveaway Section */
.spin-wheel-section {
    background: linear-gradient(135deg, #2a1810, #1a0f08);
    padding: 40px 0;
    border-top: 3px solid #fc8c03;
    border-bottom: 3px solid #fc8c03;
    margin: 20px 0;
}

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

.wheel-header {
    text-align: center;
    margin-bottom: 30px;
}

.wheel-header h3 {
    color: #fc8c03;
    font-size: 2rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(252, 140, 3, 0.5);
}

.wheel-header p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
}

.wheel-game-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.wheel-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fc8c03;
    z-index: 10;
    text-shadow: 0 0 10px rgba(252, 140, 3, 0.8);
}

.wheel {
    position: relative;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(252, 140, 3, 0.3);
    border: 5px solid #fc8c03;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #fc8c03, #e67d02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(252, 140, 3, 0.4);
}

.wheel-center i {
    color: #000;
    font-size: 1.2rem;
}

.wheel-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.participant-counter {
    background: linear-gradient(145deg, #3a2817, #2a1810);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(252, 140, 3, 0.3);
}

.counter-label {
    color: #ccc;
    font-size: 1rem;
}

.counter-value {
    color: #fc8c03;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 10px;
}

.wheel-status {
    background: linear-gradient(145deg, #3a2817, #2a1810);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(252, 140, 3, 0.3);
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.spin-button {
    background: linear-gradient(145deg, #fc8c03, #e67d02);
    color: #000;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 140, 3, 0.3);
}

.spin-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 140, 3, 0.4);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-controls input {
    flex: 1;
    padding: 10px;
    border: 2px solid rgba(252, 140, 3, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.admin-controls input::placeholder {
    color: #ccc;
}

.add-participant-btn, .clear-btn {
    background: linear-gradient(145deg, #3a2817, #2a1810);
    color: #fc8c03;
    border: 2px solid rgba(252, 140, 3, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.add-participant-btn:hover, .clear-btn:hover {
    background: linear-gradient(145deg, #fc8c03, #e67d02);
    color: #000;
}

.winner-display {
    background: linear-gradient(145deg, #2d4a2d, #1a2e1a);
    border: 3px solid #4ade80;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    animation: winner-glow 2s ease-in-out infinite alternate;
}

@keyframes winner-glow {
    0% { box-shadow: 0 0 20px rgba(74, 222, 128, 0.3); }
    100% { box-shadow: 0 0 40px rgba(74, 222, 128, 0.6); }
}

.winner-announcement h4 {
    color: #4ade80;
    font-size: 2rem;
    margin: 0 0 15px 0;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.winner-name {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
    text-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
}

.prize-info {
    color: #ccc;
    margin: 20px 0;
}

.prize-info strong {
    color: #fc8c03;
}

.claim-instruction {
    font-style: italic;
    color: #4ade80;
}

.reset-wheel-btn {
    background: linear-gradient(145deg, #4ade80, #22c55e);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.reset-wheel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}

.participants-list {
    margin-top: 30px;
}

.participants-list h4 {
    color: #fc8c03;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.empty-slot, .participant-slot {
    background: linear-gradient(145deg, #3a2817, #2a1810);
    border: 2px solid rgba(252, 140, 3, 0.2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.participant-slot {
    background: linear-gradient(145deg, #fc8c03, #e67d02);
    color: #000;
    font-weight: bold;
    border-color: #fc8c03;
    animation: participant-added 0.5s ease;
    position: relative;
    overflow: hidden;
}

.clickable-slot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.clickable-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 140, 3, 0.4);
    background: linear-gradient(145deg, #ffa726, #fc8c03);
}

.slot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: center;
}

.participant-name {
    font-size: 0.9rem;
    text-align: center;
    word-break: break-word;
}

.submission-link {
    font-size: 0.7rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: opacity 0.3s ease;
}

.clickable-slot:hover .submission-link {
    opacity: 1;
}

.submission-link i {
    font-size: 0.6rem;
}

@keyframes participant-added {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wheel-game-area {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wheel-header h3 {
        font-size: 1.5rem;
    }
    
    .wheel-header p {
        font-size: 1rem;
    }
    
    .admin-controls {
        flex-direction: column;
    }
    
    .participants-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }
    
    .winner-name {
        font-size: 2rem;
    }
}

/* Content sections */
.content-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 900;
    color: white;
}

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

.video-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-weight: 500;
}

.thumbnail-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(229, 9, 20, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
}

.video-info p {
    color: #666666;
    font-size: 0.9rem;
}

/* Twitter/X Embedded Cards */
.twitter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    align-items: start;
}

/* Twitter Timeline Wrapper */
.twitter-timelines-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.twitter-timeline-container {
    flex: 1;
    max-width: 450px;
    min-width: 320px;
}

.twitter-embed-container {
    background-color: transparent;
    border-radius: 16px;
    transition: transform 0.3s ease;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
}

.twitter-embed-container:hover {
    transform: translateY(-4px);
}

/* Ensure Twitter embeds fit nicely and maintain consistent size */
.twitter-tweet {
    margin: 0 auto !important;
    max-width: 350px !important;
    width: 350px !important;
    min-height: 200px !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Custom styling for embedded tweets */
.twitter-tweet p {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    color: #0f1419 !important;
}

.twitter-tweet a {
    color: #fc8c03 !important;
    text-decoration: none !important;
}

.twitter-tweet a:hover {
    text-decoration: underline !important;
    color: #e67e00 !important;
}

/* Loading state styling */
.twitter-embed-container blockquote {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #000000;
    margin-top: 80px;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #fc8c03;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
}

.social-link:hover {
    color: #fc8c03;
    background-color: rgba(252, 140, 3, 0.1);
    border-color: #fc8c03;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fc8c03;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #cccccc;
}

/* Riddle Section */
.riddle-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 60px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #fc8c03;
}

.riddle-section h3 {
    text-align: center;
    color: #fc8c03;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.riddle-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.riddle-header {
    text-align: center;
    margin-bottom: 30px;
}

.prison-bars {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bar {
    width: 8px;
    height: 60px;
    background: linear-gradient(180deg, #666 0%, #999 50%, #666 100%);
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.riddle-info h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.riddle-info p {
    color: #cccccc;
    margin-bottom: 20px;
}

.progress-tracker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.phase-counter {
    color: #fc8c03;
    font-weight: bold;
    font-size: 1.1rem;
}

.progress-bar-riddle {
    width: 300px;
    height: 8px;
    background-color: #333;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fc8c03 0%, #ffb347 100%);
    width: 8.33%; /* 1/12 phases */
    transition: width 0.5s ease;
    border-radius: 4px;
}

.riddle-content {
    background: rgba(252, 140, 3, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(252, 140, 3, 0.3);
}

.riddle-question h5 {
    color: #fc8c03;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.riddle-question p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.riddle-input-area {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    align-items: center;
}

#riddleAnswer {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #fc8c03;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

#riddleAnswer:focus {
    outline: none;
    border-color: #ffb347;
    box-shadow: 0 0 10px rgba(252, 140, 3, 0.3);
}

.riddle-submit-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #fc8c03 0%, #e67e00 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.riddle-submit-btn:hover {
    background: linear-gradient(135deg, #e67e00 0%, #cc6c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 140, 3, 0.4);
}

.riddle-hint {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    color: #ffc107;
    display: flex;
    align-items: center;
    gap: 10px;
}

.riddle-feedback {
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.riddle-feedback.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.riddle-feedback.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.easter-egg-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 15px;
    color: white;
}

.victory-animation h4 {
    font-size: 2rem;
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bonk-celebration {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.bonk-token {
    font-size: 2rem;
    animation: spin 2s linear infinite;
}

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

.prize-reveal {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.prize-code {
    background: rgba(0, 0, 0, 0.3);
    color: #fc8c03;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
    border: 2px dashed #fc8c03;
}

.prize-info {
    font-size: 0.9rem;
    color: #e8e8e8;
    margin-top: 10px;
}

.reset-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.reset-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* TV Video Container Styles */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 55px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#tvVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 55px;
}

.channel-info {
  position: absolute;
  top: 10px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.channel-info.show {
  opacity: 1;
}

.video-container.no-signal {
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container.no-signal::before {
  content: "No Signal";
  color: #666;
  font-size: 18px;
  font-weight: bold;
}

.video-container.powered-off {
  background: #000;
}

.video-container.powered-off::before {
  content: "";
}

/* Remove old glitch styles */
.tv-container {
  position: relative;
  width: 500px;
  height: 300px;
  perspective: 500px;
  margin: 0 auto;
}

.tv-body {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #8b6b3d;
  border-radius: 15px;
  display: flex;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tv-screen-container {
  flex: 5;
  padding: 15px;
}

.tv-screen-outer {
  background-color: #5d4827;
  height: 100%;
  border-radius: 20px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #5e5e5e;
  border-radius: 60px;
  overflow: hidden;
  border: 5px solid #333;
}

.tv-screen::before{
  content:"";
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(18, 16, 16, 0.8) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.static {
  position: relative;
  width: 100%;
  height: 100%;
}

.static::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-radial-gradient(
      circle at 17% 32%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 1%
    ),
    repeating-radial-gradient(
      circle at 82% 65%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 1%
    );
  opacity: 0.2;
  animation: staticAnimation 0.5s infinite;
}

.vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.8);
  border-radius: 55px;
  pointer-events: none;
}

.tv-controls {
  flex: 1;
  background-color: #5f4a25;
  border-radius: 0 15px 15px 0;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.speaker {
  height: 150px;
  background-color: #5d4827;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(15, 1fr);
  gap: 2px;
  padding: 5px;
}

.speaker-hole {
  background-color: #3d3019;
  border-radius: 2px;
}

.knob-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
}

.channel-dial {
  width: 40px;
  height: 40px;
  background: radial-gradient(#d0b078, #a18452);
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.channel-dial::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #333;
  border-radius: 50%;
}

.channel-numbers {
  position: absolute;
  width: 100%;
  height: 100%;
}

.channel-number {
  position: absolute;
  font-size: 7px;
  color: #333;
  font-weight: bold;
}

.channel-number:nth-child(1) {
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.channel-number:nth-child(2) {
  top: 15%;
  right: 15%;
}
.channel-number:nth-child(3) {
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
}
.channel-number:nth-child(4) {
  bottom: 15%;
  right: 15%;
}
.channel-number:nth-child(5) {
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.channel-number:nth-child(6) {
  bottom: 15%;
  left: 15%;
}
.channel-number:nth-child(7) {
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
}
.channel-number:nth-child(8) {
  top: 15%;
  left: 15%;
}

.tv-stand {
  position: absolute;
  bottom: -12px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 70%;
  height: 15px;
  background-color: #5d4827;
  border-radius: 0 0 10px 10px;
}

.power-light {
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 6px;
  height: 6px;
  background-color: #ff6b4a;
  border-radius: 50%;
  margin: 10px auto;
  box-shadow: 0 0 5px #ff6b4a;
}

.control-label {
  font-size: 6px;
  color: #d0b078;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0.15;
}

.noise::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: noise 0.2s infinite;
}

.glitch {
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  margin-left: 15px;
  color: white;
  filter: drop-shadow(0 1px 3px);
  text-transform: uppercase;
  position: relative;
  text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  animation: glitch-text 500ms infinite;
}

.glitch::before,
.glitch::after {
  content: "No Signal";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff00ff;
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-animation-2 2s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00ffff;
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-animation 2.5s infinite linear alternate-reverse;
}

.glitch-blocks {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.glitch-blocks div {
  position: absolute;
  top: -100%;
  width: 100%;
  height: 10px;
  background: rgba(0, 255, 255, 0.3);
  animation: glitch-block 3s infinite;
}

.glitch-blocks div:nth-child(1) {
  animation-delay: 0.5s;
  height: 5px;
}

.glitch-blocks div:nth-child(2) {
  background: rgba(255, 0, 255, 0.2);
  animation-delay: 1s;
}

.glitch-blocks div:nth-child(3) {
  animation-delay: 1.5s;
  height: 5px;
}

.glitch-blocks div:nth-child(4) {
  background: rgba(255, 255, 255, 0.3);
  animation-delay: 2s;
}

.text-scramble {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

/* Responsive adjustments for TV */
@keyframes glitch-block {
  0% {
    top: -100%;
    opacity: 0;
  }
  10%,
  15% {
    top: 100%;
    opacity: 1;
  }
  20% {
    top: -100%;
    opacity: 0;
  }
  100% {
    top: -100%;
    opacity: 0;
  }
}

@keyframes staticAnimation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-1%, -1%);
  }
  20% {
    transform: translate(1%, 1%);
  }
  30% {
    transform: translate(-1%, 0%);
  }
  40% {
    transform: translate(1%, -1%);
  }
  50% {
    transform: translate(-1%, 1%);
  }
  60% {
    transform: translate(1%, 0);
  }
  70% {
    transform: translate(0%, 1%);
  }
  80% {
    transform: translate(-1%, -1%);
  }
  90% {
    transform: translate(1%, 1%);
  }
  100% {
    transform: translate(0%, 0);
  }
}

@keyframes glitch-animation {
  0% {
    clip: rect(5px, 9999px, 9px, 0);
    transform: skew(0.15deg);
  }
  5% {
    clip: rect(42px, 9999px, 83px, 0);
    transform: skew(0.3deg);
  }
  10% {
    clip: rect(62px, 9999px, 11px, 0);
    transform: skew(-0.1deg);
  }
  15% {
    clip: rect(92px, 9999px, 43px, 0);
    transform: skew(0.4deg);
  }
  20% {
    clip: rect(32px, 9999px, 92px, 0);
    transform: skew(-0.2deg);
  }
  25% {
    clip: rect(12px, 9999px, 43px, 0);
    transform: skew(0.1deg);
  }
  30% {
    clip: rect(62px, 9999px, 78px, 0);
    transform: skew(0.5deg);
  }
  35% {
    clip: rect(12px, 9999px, 43px, 0);
    transform: skew(-0.3deg);
  }
  40% {
    clip: rect(53px, 9999px, 12px, 0);
    transform: skew(0.2deg);
  }
  45% {
    clip: rect(31px, 9999px, 26px, 0);
    transform: skew(-0.5deg);
  }
  50% {
    clip: rect(42px, 9999px, 71px, 0);
    transform: skew(0.1deg);
  }
  55% {
    clip: rect(22px, 9999px, 67px, 0);
    transform: skew(-0.4deg);
  }
  60% {
    clip: rect(62px, 9999px, 82px, 0);
    transform: skew(-0.2deg);
  }
  65% {
    clip: rect(12px, 9999px, 95px, 0);
    transform: skew(0.3deg);
  }
  70% {
    clip: rect(71px, 9999px, 21px, 0);
    transform: skew(0.1deg);
  }
  75% {
    clip: rect(82px, 9999px, 33px, 0);
    transform: skew(-0.3deg);
  }
  80% {
    clip: rect(51px, 9999px, 47px, 0);
    transform: skew(0.2deg);
  }
  85% {
    clip: rect(41px, 9999px, 17px, 0);
    transform: skew(-0.1deg);
  }
  90% {
    clip: rect(91px, 9999px, 93px, 0);
    transform: skew(0.4deg);
  }
  95% {
    clip: rect(24px, 9999px, 39px, 0);
    transform: skew(-0.5deg);
  }
  100% {
    clip: rect(53px, 9999px, 76px, 0);
    transform: skew(0.3deg);
  }
}

@keyframes glitch-animation-2 {
  0% {
    clip: rect(25px, 9999px, 29px, 0);
    transform: skew(0.2deg);
  }
  5% {
    clip: rect(12px, 9999px, 63px, 0);
    transform: skew(-0.4deg);
  }
  10% {
    clip: rect(62px, 9999px, 71px, 0);
    transform: skew(0.3deg);
  }
  15% {
    clip: rect(22px, 9999px, 13px, 0);
    transform: skew(-0.2deg);
  }
  20% {
    clip: rect(52px, 9999px, 62px, 0);
    transform: skew(0.5deg);
  }
  25% {
    clip: rect(92px, 9999px, 13px, 0);
    transform: skew(-0.3deg);
  }
  30% {
    clip: rect(72px, 9999px, 28px, 0);
    transform: skew(0.1deg);
  }
  35% {
    clip: rect(22px, 9999px, 48px, 0);
    transform: skew(0.4deg);
  }
  40% {
    clip: rect(42px, 9999px, 92px, 0);
    transform: skew(-0.1deg);
  }
  45% {
    clip: rect(20px, 9999px, 56px, 0);
    transform: skew(0.2deg);
  }
  50% {
    clip: rect(42px, 9999px, 11px, 0);
    transform: skew(-0.5deg);
  }
  55% {
    clip: rect(33px, 9999px, 37px, 0);
    transform: skew(0.3deg);
  }
  60% {
    clip: rect(65px, 9999px, 26px, 0);
    transform: skew(-0.2deg);
  }
  65% {
    clip: rect(23px, 9999px, 55px, 0);
    transform: skew(0.4deg);
  }
  70% {
    clip: rect(61px, 9999px, 47px, 0);
    transform: skew(-0.3deg);
  }
  75% {
    clip: rect(82px, 9999px, 23px, 0);
    transform: skew(0.1deg);
  }
  80% {
    clip: rect(51px, 9999px, 17px, 0);
    transform: skew(-0.4deg);
  }
  85% {
    clip: rect(46px, 9999px, 37px, 0);
    transform: skew(0.3deg);
  }
  90% {
    clip: rect(65px, 9999px, 23px, 0);
    transform: skew(-0.2deg);
  }
  95% {
    clip: rect(94px, 9999px, 39px, 0);
    transform: skew(0.5deg);
  }
  100% {
    clip: rect(13px, 9999px, 76px, 0);
    transform: skew(-0.3deg);
  }
}

@keyframes noise {
  0%,
  100% {
    background-color: transparent;
  }
  10% {
    background-color: rgba(255, 255, 255, 0.1);
  }
  20% {
    background-color: rgba(0, 255, 255, 0.1);
  }
  30% {
    background-color: rgba(255, 0, 255, 0.1);
  }
  40% {
    background-color: rgba(255, 255, 0, 0.1);
  }
  50% {
    background-color: rgba(0, 0, 0, 0.1);
  }
  60% {
    background-color: rgba(255, 0, 0, 0.1);
  }
  70% {
    background-color: rgba(0, 255, 0, 0.1);
  }
  80% {
    background-color: rgba(0, 0, 255, 0.1);
  }
  90% {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@keyframes glitch-text {
  0% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
      -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
      0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  }
  14% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
      -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
      0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  }
  15% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
      0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
      -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  49% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
      0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
      -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  50% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
      0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  99% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
      0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  100% {
    text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
      -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
}

/* Vintage TV Buttons Styles */
.buttons-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.button-column {
    display: flex;
    gap: 20px;
    align-items: center;
}

.button-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.vintage-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #D2691E, #8B4513);
    border: 4px solid #2F1B14;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 16px rgba(0,0,0,0.6),
        0 4px 8px rgba(0,0,0,0.4),
        inset 0 2px 4px rgba(255,255,255,0.2);
}

.vintage-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(0,0,0,0.7),
        0 6px 12px rgba(0,0,0,0.5),
        inset 0 2px 4px rgba(255,255,255,0.3);
}

.vintage-button:active {
    transform: translateY(2px);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.6),
        0 2px 4px rgba(0,0,0,0.4),
        inset 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(145deg, #8B4513, #654321);
}

.button-icon {
    font-size: 24px;
    color: #FFF8DC;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-icon i {
    font-size: 24px;
    color: #FFF8DC;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.7));
}

.button-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: none;
    background: rgba(252, 140, 3, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
}

/* Subtle glow effect on hover */
.vintage-button:hover .button-icon {
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.7),
        0 0 10px rgba(255,248,220,0.5);
}

.vintage-button:hover .button-icon i {
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.7)) drop-shadow(0 0 10px rgba(255,248,220,0.5));
}

/* Click sound effect visual */
@keyframes click-flash {
    0% { background: linear-gradient(145deg, #D2691E, #8B4513); }
    50% { background: linear-gradient(145deg, #FF8C00, #D2691E); }
    100% { background: linear-gradient(145deg, #D2691E, #8B4513); }
}

.vintage-button:active {
    animation: click-flash 0.1s ease;
}

/* Market Section Responsive */
@media (max-width: 768px) {
    .price-display {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .news-item {
        font-size: 0.9rem;
        padding: 0 30px;
    }
    
    .market-section {
        padding: 20px 0;
    }
    
    .price-widget {
        padding: 20px;
    }
}

/* Mobile layout for vintage buttons */
@media (max-width: 768px) {
    .buttons-container {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .button-column {
        flex-direction: row;
        gap: 15px;
    }
    
    .vintage-button {
        width: 60px;
        height: 60px;
    }
    
    .button-icon i {
        font-size: 18px;
    }
    
    .button-icon {
        font-size: 18px;
    }
    
    .button-label {
        font-size: 8px;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .buttons-container {
        gap: 12px;
    }
    
    .vintage-button {
        width: 50px;
        height: 50px;
    }
    
    .button-icon i {
        font-size: 16px;
    }
    
    .button-icon {
        font-size: 16px;
    }
    
    .button-label {
        font-size: 7px;
        bottom: -18px;
        padding: 1px 4px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .twitter-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 15px;
    }

    .twitter-timelines-wrapper {
        flex-direction: column;
        gap: 20px;
        max-width: 450px;
    }

    .twitter-timeline-container {
        max-width: 100%;
        min-width: 100%;
    }
    
    .twitter-embed-container {
        max-width: 100%;
    }
    
    .twitter-tweet {
        width: 100% !important;
        max-width: 100% !important;
    }

    .content-section {
        margin: 40px 0;
    }

    .navbar {
        position: relative;
        background-color: rgba(0, 0, 0, 0.95);
    }

    main {
        margin-top: 0;
    }

    .tv-container {
    width: 400px;
    height: 240px;
  }
  
  .glitch {
    font-size: 16px;
  }
  
  .speaker {
    height: 120px;
    grid-template-rows: repeat(12, 1fr);
  }
  
  .channel-dial {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .twitter-grid {
        grid-template-columns: 1fr;
    }

    .twitter-timelines-wrapper {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .twitter-timeline-container {
        max-width: 100%;
        min-width: 100%;
    }

    .tv-container {
    width: 320px;
    height: 190px;
  }
  
  .glitch {
    font-size: 14px;
    margin-left: 10px;
  }
  
  .speaker {
    height: 100px;
    grid-template-rows: repeat(10, 1fr);
  }
  
  .channel-dial {
    width: 30px;
    height: 30px;
  }
  
  .channel-number {
    font-size: 6px;
  }

  .riddle-section {
    padding: 20px;
    margin: 40px 20px;
  }

  .riddle-section h3 {
    font-size: 1.5rem;
  }

  .riddle-container {
    padding: 20px;
  }

  .prison-bars {
    gap: 10px;
  }

  .bar {
    width: 6px;
    height: 40px;
  }

  .progress-bar-riddle {
    width: 250px;
  }

  .riddle-input-area {
    flex-direction: column;
    gap: 15px;
  }

  #riddleAnswer {
    width: 100%;
  }

  .riddle-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .victory-animation h4 {
    font-size: 1.5rem;
  }

  .bonk-celebration {
    gap: 15px;
  }

  .bonk-token {
    font-size: 1.5rem;
  }

  .prize-code {
    font-size: 1rem;
    word-break: break-all;
  }
}
