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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Ad */
.header-ad {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    text-align: center;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.nav-logo h1 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-logo i {
    margin-right: 10px;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-menu a:hover {
    color: #ff6b35;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #333;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #333;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 140px);
    padding: 40px 0;
    position: relative;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.play-now-btn {
    background: #e50914;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.play-now-btn:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

.more-info-btn {
    background: rgba(109, 109, 110, 0.7);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.more-info-btn:hover {
    background: rgba(109, 109, 110, 0.9);
    transform: translateY(-2px);
}

/* Sidebar Ads */
.sidebar-ad {
    position: fixed;
    width: 160px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
}

.sidebar-ad-left {
    left: 20px;
    top: 120px;
}

.sidebar-ad-right {
    right: 20px;
    top: 120px;
}

/* Pre-Server Ad */
.pre-server-ad {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
}

/* Browse by Genre Section */
.browse-genre-section {
    margin: 50px 0;
    padding: 40px 30px;
    text-align: center;
}

.browse-genre-section h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.genre-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px 20px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.genre-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
}

.genre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.genre-card:hover::before {
    opacity: 1;
}

.genre-icon {
    background: #ff6b35;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.genre-card:hover .genre-icon {
    background: #e55a2b;
    transform: scale(1.1);
}

.genre-name {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Server Section */
.server-section {
    margin: 60px 0;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid #333;
}

.server-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Server Card Styling */
.server-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

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

.server-icon {
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 10px rgba(76, 175, 80, 0.5); }
    50% { box-shadow: 0 0 20px rgba(76, 175, 80, 0.8); }
    100% { box-shadow: 0 0 10px rgba(76, 175, 80, 0.5); }
}

.server-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.server-details {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.server-play-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.server-play-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.server-play-btn i {
    font-size: 1.1rem;
}

/* Featured Movies */
.featured-movies {
    margin: 40px 0;
}

.featured-movies h2 {
    color: #ff6b35;
    margin-bottom: 30px;
    font-size: 2rem;
}

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

.movie-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.movie-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.movie-poster {
    width: 100%;
    height: 200px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.movie-poster i {
    font-size: 3rem;
    color: #666;
}

.movie-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.movie-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Ad Banners */
.ad-banner {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
}

.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 1.1rem;
    padding: 20px;
}

.ad-placeholder i {
    font-size: 1.5rem;
}

/* Sidebar Ad Styling */
.sidebar-ad .ad-placeholder {
    padding: 15px 10px;
    font-size: 0.9rem;
    flex-direction: column;
    gap: 8px;
}

.sidebar-ad .ad-placeholder i {
    font-size: 1.2rem;
}

.sidebar-ad .ad-placeholder span {
    font-size: 0.8rem;
    text-align: center;
}

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

.bottom-ad {
    margin-top: 40px;
}

.footer-ad {
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

/* Article Section */
.article-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid #333;
}

.article-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ff6b35;
    font-size: 2rem;
}

.article-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Main Article */
.main-article {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.article-image {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-excerpt {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #e55a2b;
    transform: translateX(5px);
    color: white;
    text-decoration: none;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-article {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.sidebar-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.sidebar-article-image {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sidebar-article-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.sidebar-article-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.sidebar-read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-read-more:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Internal and External Links */
.internal-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.internal-link:hover {
    color: #e55a2b;
    text-decoration: none;
    border-bottom: 1px solid #ff6b35;
}

.external-link {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.external-link:hover {
    color: #2d7dd2;
    text-decoration: underline;
}

/* How It Works Section */
.how-it-works-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid #333;
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ff6b35;
    font-size: 2.2rem;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.intro-text strong {
    color: #ff6b35;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.step-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.feature-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

.technical-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.technical-info h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.tech-item {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 15px;
    color: #ccc;
    font-size: 0.9rem;
}

.tech-item strong {
    color: #ff6b35;
}

.technical-info p {
    color: #ccc;
    line-height: 1.6;
    text-align: center;
    margin-top: 20px;
}

/* Article Pages */
.breadcrumb {
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e55a2b;
}

.breadcrumb span {
    color: #666;
    margin: 0 10px;
}

.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-image-large {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.article-page h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-page .article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    color: #999;
    font-size: 0.9rem;
}

.article-page .article-content {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-page .lead {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-page h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.article-page h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-page ul, .article-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-page li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-page strong {
    color: #ff6b35;
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #333;
}

.related-articles h3 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.related-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    text-decoration: none;
    color: inherit;
}

.related-icon {
    background: #ff6b35;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.related-card h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.related-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

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

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

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

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 10% auto;
    padding: 0;
    border: 2px solid #ff6b35;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 20px;
    border-radius: 13px 13px 0 0;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.server-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.timer-display {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b35;
    margin: 20px 0;
}

.timer-display span:last-child {
    font-size: 1.2rem;
    color: #ccc;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    width: 0%;
    transition: width 1s linear;
}

.status-text {
    color: #ff6b35;
    font-weight: bold;
    margin-top: 15px;
}

/* Redirect Button */
.redirect-btn {
    background: linear-gradient(135deg, #e50914 0%, #f40612 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.redirect-btn:hover {
    background: linear-gradient(135deg, #f40612 0%, #ff1a2b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

.redirect-btn:active {
    transform: translateY(0);
}

.redirect-btn i {
    font-size: 1.1rem;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Movies Section */
.movies-section {
    margin: 40px 0;
}

.movies-section h2 {
    color: #ff6b35;
    margin-bottom: 30px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Movie Rating */
.movie-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    color: #ff6b35;
    font-weight: bold;
}

.movie-rating i {
    color: #ffd700;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #ff6b35;
    border-bottom: 2px solid #ff6b35;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    margin: 30px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ff6b35;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* FAQ Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.2);
}

.faq-question h3 {
    margin: 0;
    color: #ffffff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    margin: 30px 0;
}

.content-section h2 {
    color: #ff6b35;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul {
    color: #ccc;
    padding-left: 20px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .play-now-btn,
    .more-info-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .genre-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .genre-card {
        padding: 25px 15px;
    }

    .genre-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .article-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-image {
        height: 150px;
        font-size: 2rem;
    }

    .article-content {
        padding: 20px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

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

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

    .how-it-works-section {
        padding: 25px;
    }

    .how-it-works-section h2 {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 35px;
    }

    .article-page {
        padding: 20px 15px;
    }

    .article-page h1 {
        font-size: 2rem;
    }

    .article-page .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-image-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

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

    .sidebar-ad {
        position: static;
        width: 100%;
        margin: 20px 0;
        transform: none;
    }

    .sidebar-ad-left,
    .sidebar-ad-right {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        margin: 20px 0;
    }

    .modal-content {
        margin: 20% auto;
        width: 95%;
    }

    .timer-display {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 20px;
    }
}
