/* Mario Theme Color Variables */
:root {
    --mario-red: #E52521;
    --mario-blue: #0066CC;
    --mario-yellow: #FFD700;
    --mario-brown: #8B4513;
    --mario-green: #00A652;
    --mario-orange: #FF6B35;
    --mario-dark: #2C1810;
    --mario-white: #FFFFFF;
}

/* Global Style Reset and Basic Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2C1810;
    background: linear-gradient(135deg, #E52521 0%, #0066CC 50%, #00A652 100%);
    min-height: 100vh;
}

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

/* Navigation Styles */
.navbar {
    background: rgba(229, 37, 33, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid #FFD700;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    margin: 0;
    text-shadow: 2px 2px 0px #8B4513;
}

.nav-subtitle {
    font-size: 0.9rem;
    color: #FFFFFF;
    margin-top: 2px;
    text-shadow: 1px 1px 0px #E52521;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    margin: 3rem 0;
    text-shadow: 3px 3px 0px #E52521, 5px 5px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Status Banner */
.status-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin: 2rem 0;
    border-radius: 15px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-icon {
    font-size: 3rem;
}

.status-text h2 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

/* Countdown Timer */
.countdown-section {
    text-align: center;
    padding: 3rem 0;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, #0066CC, #00A652);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    min-width: 120px;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    color: #FFFFFF;
    display: block;
    text-shadow: 2px 2px 0px #8B4513;
}

.countdown-label {
    color: #FFD700;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Container */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Cards */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-card {
    background: linear-gradient(135deg, #FFFFFF, #F0F8FF);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(229, 37, 33, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid #FFD700;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 37, 33, 0.3);
}

.video-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, #0066CC, #E52521);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    cursor: pointer;
}

.thumbnail-placeholder {
    text-align: center;
    z-index: 1;
}

.thumbnail-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.3s ease;
}

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

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.watch-btn {
    background: linear-gradient(135deg, #E52521, #FF6B35);
    color: white;
    border: 3px solid #FFD700;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 37, 33, 0.4);
    background: linear-gradient(135deg, #FF6B35, #E52521);
}

/* Video Embed */
.video-embed {
    margin-top: 1rem;
}

.video-embed iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

/* Engagement Badges */
.engagement-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.engagement-badge.very-high {
    background: #ff4757;
    color: white;
}

.engagement-badge.high {
    background: #ffa502;
    color: white;
}

.engagement-badge.medium {
    background: #3742fa;
    color: white;
}

.engagement-badge.low {
    background: #2ed573;
    color: white;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-item p {
    color: white;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.placeholder-image p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Quick Navigation */
.quick-nav {
    padding: 4rem 0;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.nav-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.nav-card h3 {
    color: #764ba2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Watch Now Section */
.watch-now {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.watch-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.watch-content {
    padding: 2rem;
}

.watch-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.watch-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platforms {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.platform {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e9ecef;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8B4513, #2C1810);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 5px solid #E52521;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Loading Message */
.loading-message {
    text-align: center;
    padding: 3rem;
    color: white;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .section-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

/* Watch Guide Page Optimized Styles */
.page-header {
    background: linear-gradient(135deg, rgba(229, 37, 33, 0.9), rgba(0, 102, 204, 0.9));
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 5px solid #FFD700;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px #8B4513;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Enhanced Content Cards */
.what-to-watch {
    padding: 4rem 0;
}

.watch-options {
    display: grid;
    gap: 3rem;
}

.watch-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.watch-category h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.content-item {
    background: linear-gradient(135deg, #FFFFFF, #F8F9FF);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid #FFD700;
}

.content-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.content-image {
    height: 280px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(229, 37, 33, 0.8), rgba(0, 102, 204, 0.8));
}

.image-placeholder span {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-info {
    padding: 2rem;
}

.content-info h4 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.content-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.platform-availability {
    margin-bottom: 1.5rem;
}

.platform-availability h5 {
    color: #444;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.platforms {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.platform-link {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.platform-link.netflix {
    background: linear-gradient(135deg, #E50914, #B20710);
    color: white;
    border-color: #8B0000;
}

.platform-link.netflix:hover {
    background: linear-gradient(135deg, #B20710, #E50914);
    border-color: #E50914;
}

.platform-link.amazon {
    background: linear-gradient(135deg, #00A8E1, #0074A6);
    color: white;
    border-color: #005177;
}

.platform-link.amazon:hover {
    background: linear-gradient(135deg, #0074A6, #00A8E1);
    border-color: #00A8E1;
}

.platform-link.apple {
    background: linear-gradient(135deg, #1D1D1F, #434344);
    color: white;
    border-color: #000000;
}

.platform-link.apple:hover {
    background: linear-gradient(135deg, #434344, #1D1D1F);
    border-color: #1D1D1F;
}

.platform-link.switch {
    background: linear-gradient(135deg, #E60012, #B8000E);
    color: white;
    border-color: #8B0000;
}

.platform-link.switch:hover {
    background: linear-gradient(135deg, #B8000E, #E60012);
    border-color: #E60012;
}

.platform-link.wii {
    background: linear-gradient(135deg, #8BC34A, #689F38);
    color: white;
    border-color: #558B2F;
}

.platform-link.wii:hover {
    background: linear-gradient(135deg, #689F38, #8BC34A);
    border-color: #8BC34A;
}

.rating-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rating {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.duration {
    background: linear-gradient(135deg, #0066CC, #004499);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Enhanced Buttons */
.watch-btn {
    background: linear-gradient(135deg, #E52521, #FF6B35);
    color: white;
    border: 3px solid #FFD700;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(229, 37, 33, 0.3);
}

.watch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 37, 33, 0.4);
    background: linear-gradient(135deg, #FF6B35, #E52521);
}

/* Gaming Section Enhancement */
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.game-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-cover {
    height: 250px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.cover-placeholder {
    text-align: center;
}

.cover-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.game-details {
    padding: 2rem;
}

.game-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E52521;
    margin-bottom: 1rem;
}

.game-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.purchase-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.buy-btn {
    background: linear-gradient(135deg, #00A652, #00773A);
    color: white;
    border: 3px solid #FFD700;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 82, 0.4);
}

.info-btn {
    background: linear-gradient(135deg, #0066CC, #004499);
    color: white;
    border: 3px solid #FFD700;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

/* Subscription Plans */
.subscription-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sub-plan {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.sub-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sub-plan.recommended {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFD70020, #FFA50020);
}

.sub-plan h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sub-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #E52521;
    margin-bottom: 1.5rem;
}

.sub-features {
    list-style: none;
    margin-bottom: 2rem;
}

.sub-features li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.sub-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.sub-btn {
    background: linear-gradient(135deg, #E52521, #FF6B35);
    color: white;
    border: 3px solid #FFD700;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.sub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 37, 33, 0.4);
}

.sub-btn.recommended {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border-color: #E52521;
}

.sub-btn.recommended:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

/* Streaming Comparison */
.streaming-comparison {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
}

.table-header {
    background: linear-gradient(135deg, #764ba2, #667eea);
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr 1fr;
    padding: 1.5rem;
    font-weight: bold;
    text-align: center;
    gap: 1rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    align-items: center;
    gap: 1rem;
}

.table-row:last-child {
    border-bottom: none;
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.platform-info h4 {
    color: #333;
    margin-bottom: 0.3rem;
}

.platform-desc {
    font-size: 0.9rem;
    color: #666;
}

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

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #E52521;
    display: block;
}

.price-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
}

.quality, .devices, .features {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.subscribe-btn {
    background: linear-gradient(135deg, #00A652, #00773A);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 82, 0.4);
}

/* Responsive Design for Watch Guide */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        display: block;
        padding: 1.5rem;
    }
    
    .platform-info, .price-info, .quality, .devices, .features {
        margin-bottom: 1rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .watch-category {
        padding: 1.5rem;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .subscription-details {
        grid-template-columns: 1fr;
    }
    
    .purchase-options {
        flex-direction: column;
    }
    
    .buy-btn, .info-btn {
        min-width: auto;
    }
    
    .platforms {
        justify-content: center;
    }
    
    .rating-info {
        justify-content: center;
    }
}

/* Enhanced Viewing Preparation Section */
.watching-preparation {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.1), rgba(102, 126, 234, 0.1));
    position: relative;
    overflow: hidden;
}

.watching-preparation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/><circle cx="15" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="8" cy="18" r="0.8" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    pointer-events: none;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.prep-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.95));
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.prep-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E52521, #FFD700, #0066CC, #00A652);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.prep-item:hover::before {
    transform: translateX(0);
}

.prep-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.prep-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.prep-item:hover .prep-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.prep-item:nth-child(1) .prep-icon {
    background: linear-gradient(135deg, #E52521, #FF6B35);
}

.prep-item:nth-child(2) .prep-icon {
    background: linear-gradient(135deg, #00A652, #00D4AA);
}

.prep-item:nth-child(3) .prep-icon {
    background: linear-gradient(135deg, #0066CC, #4FC3F7);
}

.prep-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.prep-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #E52521, #FFD700);
    border-radius: 2px;
}

.watching-order {
    list-style: none;
    counter-reset: order-counter;
}

.watching-order li {
    counter-increment: order-counter;
    margin-bottom: 1.2rem;
    padding: 1rem 1rem 1rem 3.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
    border-left: 4px solid #E52521;
    transition: all 0.3s ease;
}

.watching-order li::before {
    content: counter(order-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #E52521, #FF6B35);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(229, 37, 33, 0.3);
}

.watching-order li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.audience-group {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-group:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.audience-group h4 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audience-group p {
    color: #666;
    line-height: 1.6;
}

.time-planning {
    display: grid;
    gap: 1.2rem;
}

.time-block {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.time-block:nth-child(1) {
    border-left-color: #E52521;
}

.time-block:nth-child(2) {
    border-left-color: #0066CC;
}

.time-block:nth-child(3) {
    border-left-color: #00A652;
}

.time-block:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.time-block h4 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.time-block p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Responsive Design for Preparation Section */
@media (max-width: 768px) {
    .preparation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prep-item {
        padding: 2rem;
    }
    
    .prep-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .audience-grid {
        gap: 0.8rem;
    }
    
    .audience-group, .time-block {
        padding: 1.2rem;
    }
}