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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar {
    padding: 15px 0;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0a5b58;
    cursor: pointer;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #5ba83a;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    width: 200px;
    outline: none;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background: #0a5b58;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #5ba83a;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.mobile-menu {
    display: none;
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #0a5b58;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.5;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #5ba83a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* Ad Banners */
.ad-banner {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulse 2s infinite;
}

.ad-banner i {
    color: #0a5b58;
    font-size: 24px;
    margin-bottom: 8px;
}

.ad-banner p {
    color: #888;
    font-size: 14px;
}

.ad-hero {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 250px;
    height: 120px;
    z-index: 3;
}

.ad-full {
    width: 100%;
    height: 100px;
    margin: 40px auto;
    max-width: 1200px;
}

.ad-inline {
    width: 200px;
    height: 60px;
}

/* Home Page Side Ads */
.home-side-ads {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
}

.side-ad {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
}

.left-side-ad {
    left: 20px;
}

.right-side-ad {
    right: 20px;
}

.ad-sidebar {
    width: 120px;
    height: 400px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pulse 3s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.ad-text-vertical {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 12px;
}

.ad-section {
    padding: 0 20px;
}

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

/* Servers Section */
.servers-section {
    padding: 80px 0;
    background: #111111;
}

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

.server-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.server-card:hover::before {
    left: 100%;
}

.server-icon {
    text-align: center;
    margin-bottom: 20px;
}

.server-icon i {
    font-size: 48px;
    color: #0a5b58;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.server-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.server-status {
    color: #888;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}

.server-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.server-badge.online {
    color: #4ade80;
}

.server-badge i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

.server-play-btn {
    width: 100%;
    background: #0a5b58;
    border: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-play-btn:hover {
    background: #5ba83a;
    transform: scale(1.05);
}

/* Movies Section */
.movies-section {
    padding: 80px 0;
    background: #111111;
}

.movies-section:nth-child(even) {
    background: #000000;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.section-title.center {
    text-align: center;
    width: 100%;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

/* Movie Card */
.movie-card {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.movie-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.movie-image-container {
    position: relative;
    overflow: hidden;
}

.movie-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.movie-placeholder {
    width: 100%;
    height: 300px;
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
}

.movie-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-overlay i {
    color: white;
    font-size: 48px;
}

.movie-info {
    padding: 15px;
}

.movie-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.movie-rating i {
    color: #ffd700;
    font-size: 12px;
}

.movie-rating span {
    color: #888;
    font-size: 12px;
}

/* Article Section */
.article-section {
    padding: 80px 0;
    background: #000000;
}

.main-article {
    max-width: 800px;
    margin: 0 auto;
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.article-header {
    padding: 40px 40px 0;
}

.article-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #888;
}

.article-image {
    margin-bottom: 30px;
}

.article-hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.article-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #888;
    font-style: italic;
    text-align: center;
}

.article-brand-image {
    margin: 30px 0;
    text-align: center;
}

.brand-logo-image {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.article-brand-image figcaption {
    margin-top: 15px;
    font-size: 14px;
    color: #888;
    font-style: italic;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.article-content {
    padding: 0 40px 40px;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    padding: 20px;
    background: #1a1a1a;
    border-left: 4px solid #0a5b58;
    border-radius: 0 8px 8px 0;
}

.article-content h3 {
    font-size: 1.8rem;
    color: #0a5b58;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.article-content h4 {
    font-size: 1.4rem;
    color: white;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-content p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 16px;
}

.internal-link {
    color: #0a5b58;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.internal-link:hover {
    border-bottom-color: #0a5b58;
}

.external-link {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.external-link:hover {
    border-bottom-color: #60a5fa;
}

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

.content-category {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}

.content-category h4 {
    color: #0a5b58;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.content-category p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.article-cta {
    background: linear-gradient(145deg, #0a5b58, #5ba83a);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.article-cta p {
    color: white;
    margin: 0;
    font-weight: 600;
}

.cta-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.cta-link:hover {
    color: #ffddcc;
}

.article-footer {
    padding: 30px 40px;
    border-top: 1px solid #333;
    background: #0a0a0a;
}

.article-tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: #2a2a2a;
    color: #cccccc;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin: 0 5px 5px 0;
    border: 1px solid #444;
}

.article-share p {
    color: #888;
    margin-bottom: 10px;
    font-size: 14px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #cccccc;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #000000;
}

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

.genre-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.genre-card:hover {
    background: #2a2a2a;
    transform: translateY(-5px);
}

.genre-card i {
    color: #0a5b58;
    font-size: 48px;
    margin-bottom: 15px;
}

.genre-card h4 {
    font-size: 18px;
    font-weight: 600;
}

/* Page Styles */
.page-header {
    text-align: center;
    padding: 100px 20px 50px;
    background: #111111;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.info-icon {
    font-size: 80px;
    color: #0a5b58;
    margin-bottom: 30px;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    background: #111111;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.feature-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-card p {
    color: #888;
    line-height: 1.6;
}

.info-buttons {
    text-align: center;
    margin-top: 40px;
}

.info-buttons .btn {
    margin: 0 10px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links i {
    color: #888;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: white;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh 2vw;
    min-height: 100vh;
    box-sizing: border-box;
}

.server-timer-modal {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: min(1000px, 90vw);
    height: auto;
    max-height: 90vh;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
}

.modal-side-ad {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-ad {
    margin-right: 20px;
}

.right-ad {
    margin-left: 20px;
}

.modal-main-content {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: visible;
    animation: slideIn 0.3s ease;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.ad-vertical {
    width: 100px;
    height: 400px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.modal-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

.modal-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

#proxyConfirmation {
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

#proxyGoButton {
    position: relative !important;
    display: inline-block !important;
    margin: 0 auto;
    min-width: 150px;
    white-space: nowrap;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.modal-description {
    color: #cccccc;
    margin-bottom: 30px;
    text-align: center;
}

.servers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.server-btn {
    background: #2a2a2a;
    border: none;
    color: white;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.server-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-info i {
    color: #0a5b58;
    font-size: 18px;
}

.server-status {
    font-size: 14px;
    font-weight: 500;
}

.server-status.green { color: #4ade80; }
.server-status.blue { color: #60a5fa; }
.server-status.yellow { color: #fbbf24; }
.server-status.orange { color: #0a5b58; }
.server-status.purple { color: #a855f7; }
.server-status.red { color: #f87171; }

/* Server Timer Modal Content */
.modal-ad-top {
    margin-bottom: 30px;
    text-align: center;
}

.server-timer-content {
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.server-selected-info {
    margin-bottom: 40px;
}

.server-icon-large {
    font-size: 64px;
    color: #0a5b58;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.server-selected-info h4 {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.server-description {
    color: #888;
    font-size: 16px;
    line-height: 1.5;
}

.timer-display {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.countdown-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: none;
    stroke: #333;
    stroke-width: 4;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s ease;
}

.progress-ring-circle.animate {
    stroke: #0a5b58;
    stroke-dashoffset: 0;
}

.countdown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.countdown-number {
    font-size: 32px;
    font-weight: bold;
    color: #0a5b58;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.connection-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #333;
}

.status-item i {
    font-size: 20px;
    color: #4ade80;
}

.status-item span {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.proxy-info {
    margin-top: 30px;
}

.proxy-info p {
    color: #888;
    margin-bottom: 15px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #0a5b58;
    border-radius: 50%;
    animation: loading-bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes loading-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Streaming State */
.streaming-content {
    text-align: center;
}

.video-placeholder {
    background: #000;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

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

.video-icon {
    color: #666;
    font-size: 48px;
    margin-bottom: 20px;
}

.success-message {
    color: #4ade80;
    margin-bottom: 10px;
    font-weight: 500;
}

.proxy-message {
    color: #888;
    margin-bottom: 10px;
    font-size: 14px;
}

.ready-message {
    color: white;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .genres-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ad-hero {
        display: none;
    }

    .home-side-ads {
        display: none;
    }

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

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

    .info-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .servers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connection-status {
        grid-template-columns: 1fr;
    }

    .modal-side-ad {
        display: none;
    }

    .server-timer-modal {
        max-width: 95vw;
        flex-direction: column;
        min-height: auto;
    }

    .modal-main-content {
        min-height: 300px;
    }

    .server-timer-content {
        min-height: 250px;
        padding: 15px;
    }

    #proxyConfirmation {
        margin-top: 15px;
        padding: 0 10px;
    }

    #proxyGoButton {
        min-width: 120px;
        padding: 10px 20px !important;
        font-size: 1rem !important;
    }

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

    .article-header,
    .article-content,
    .article-footer {
        padding: 20px;
    }

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

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

/* Zoom level adjustments */
@media screen and (min-resolution: 120dpi) {
    .modal {
        transform: scale(1);
        transform-origin: center center;
    }
    
    .server-timer-modal {
        max-width: min(1000px, 85vw);
    }
    
    #proxyConfirmation {
        position: relative;
        z-index: 100;
        margin: 20px auto;
        width: fit-content;
    }
    
    #proxyGoButton {
        position: static !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

/* High DPI and zoom adjustments */
@media screen and (min-resolution: 150dpi), screen and (min-device-pixel-ratio: 1.5) {
    .modal.active {
        padding: 1vh 1vw;
    }
    
    .server-timer-modal {
        max-width: min(900px, 80vw);
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .server-timer-content {
        padding: 15px;
        min-height: 280px;
    }
}

/* Very high zoom levels */
@media screen and (max-width: 600px) {
    .modal.active {
        padding: 5px;
        align-items: flex-start;
        padding-top: 10vh;
    }
    
    .server-timer-modal {
        max-width: 95vw;
        flex-direction: column;
    }
    
    .modal-side-ad {
        display: none;
    }
    
    #proxyConfirmation {
        position: sticky;
        bottom: 0;
        background: #1a1a1a;
        padding: 15px;
        border-top: 1px solid #333;
        margin-top: auto;
    }
}

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

    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* Replace all instances of #408d28 with #0a5b58 */
.article-content h3 {
    font-size: 1.8rem;
    color: #0a5b58;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.article-content h4 {
    font-size: 1.4rem;
    color: white;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-content p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 16px;
}

.internal-link {
    color: #0a5b58;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.internal-link:hover {
    border-bottom-color: #0a5b58;
}

.external-link {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.external-link:hover {
    border-bottom-color: #60a5fa;
}

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

.content-category {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}

.content-category h4 {
    color: #0a5b58;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.content-category p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.article-cta {
    background: linear-gradient(145deg, #0a5b58, #5ba83a);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.article-cta p {
    color: white;
    margin: 0;
    font-weight: 600;
}

.cta-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.cta-link:hover {
    color: #ffddcc;
}

.article-footer {
    padding: 30px 40px;
    border-top: 1px solid #333;
    background: #0a0a0a;
}

.article-tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: #2a2a2a;
    color: #cccccc;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin: 0 5px 5px 0;
    border: 1px solid #444;
}

.article-share p {
    color: #888;
    margin-bottom: 10px;
    font-size: 14px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #cccccc;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #000000;
}

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

.genre-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.genre-card:hover {
    background: #2a2a2a;
    transform: translateY(-5px);
}

.genre-card i {
    color: #0a5b58;
    font-size: 48px;
    margin-bottom: 15px;
}

.genre-card h4 {
    font-size: 18px;
    font-weight: 600;
}

/* Page Styles */
.page-header {
    text-align: center;
    padding: 100px 20px 50px;
    background: #111111;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.info-icon {
    font-size: 80px;
    color: #0a5b58;
    margin-bottom: 30px;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    background: #111111;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.feature-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-card p {
    color: #888;
    line-height: 1.6;
}

.info-buttons {
    text-align: center;
    margin-top: 40px;
}

.info-buttons .btn {
    margin: 0 10px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links i {
    color: #888;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: white;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh 2vw;
    min-height: 100vh;
    box-sizing: border-box;
}

.server-timer-modal {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: min(1000px, 90vw);
    height: auto;
    max-height: 90vh;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
}

.modal-side-ad {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-ad {
    margin-right: 20px;
}

.right-ad {
    margin-left: 20px;
}

.modal-main-content {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: visible;
    animation: slideIn 0.3s ease;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.ad-vertical {
    width: 100px;
    height: 400px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.modal-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

.modal-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

#proxyConfirmation {
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

#proxyGoButton {
    position: relative !important;
    display: inline-block !important;
    margin: 0 auto;
    min-width: 150px;
    white-space: nowrap;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.modal-description {
    color: #cccccc;
    margin-bottom: 30px;
    text-align: center;
}

.servers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.server-btn {
    background: #2a2a2a;
    border: none;
    color: white;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.server-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-info i {
    color: #0a5b58;
    font-size: 18px;
}

.server-status {
    font-size: 14px;
    font-weight: 500;
}

.server-status.green { color: #4ade80; }
.server-status.blue { color: #60a5fa; }
.server-status.yellow { color: #fbbf24; }
.server-status.orange { color: #0a5b58; }
.server-status.purple { color: #a855f7; }
.server-status.red { color: #f87171; }

/* Server Timer Modal Content */
.modal-ad-top {
    margin-bottom: 30px;
    text-align: center;
}

.server-timer-content {
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.server-selected-info {
    margin-bottom: 40px;
}

.server-icon-large {
    font-size: 64px;
    color: #0a5b58;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.server-selected-info h4 {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.server-description {
    color: #888;
    font-size: 16px;
    line-height: 1.5;
}

.timer-display {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.countdown-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: none;
    stroke: #333;
    stroke-width: 4;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s ease;
}

.progress-ring-circle.animate {
    stroke: #0a5b58;
    stroke-dashoffset: 0;
}

.countdown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.countdown-number {
    font-size: 32px;
    font-weight: bold;
    color: #0a5b58;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.connection-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #333;
}

.status-item i {
    font-size: 20px;
    color: #4ade80;
}

.status-item span {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.proxy-info {
    margin-top: 30px;
}

.proxy-info p {
    color: #888;
    margin-bottom: 15px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #0a5b58;
    border-radius: 50%;
    animation: loading-bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes loading-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Streaming State */
.streaming-content {
    text-align: center;
}

.video-placeholder {
    background: #000;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

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

.video-icon {
    color: #666;
    font-size: 48px;
    margin-bottom: 20px;
}

.success-message {
    color: #4ade80;
    margin-bottom: 10px;
    font-weight: 500;
}

.proxy-message {
    color: #888;
    margin-bottom: 10px;
    font-size: 14px;
}

.ready-message {
    color: white;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .genres-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ad-hero {
        display: none;
    }

    .home-side-ads {
        display: none;
    }

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

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

    .info-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .servers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connection-status {
        grid-template-columns: 1fr;
    }

    .modal-side-ad {
        display: none;
    }

    .server-timer-modal {
        max-width: 95vw;
        flex-direction: column;
        min-height: auto;
    }

    .modal-main-content {
        min-height: 300px;
    }

    .server-timer-content {
        min-height: 250px;
        padding: 15px;
    }

    #proxyConfirmation {
        margin-top: 15px;
        padding: 0 10px;
    }

    #proxyGoButton {
        min-width: 120px;
        padding: 10px 20px !important;
        font-size: 1rem !important;
    }

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

    .article-header,
    .article-content,
    .article-footer {
        padding: 20px;
    }

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

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

/* Zoom level adjustments */
@media screen and (min-resolution: 120dpi) {
    .modal {
        transform: scale(1);
        transform-origin: center center;
    }
    
    .server-timer-modal {
        max-width: min(1000px, 85vw);
    }
    
    #proxyConfirmation {
        position: relative;
        z-index: 100;
        margin: 20px auto;
        width: fit-content;
    }
    
    #proxyGoButton {
        position: static !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

/* High DPI and zoom adjustments */
@media screen and (min-resolution: 150dpi), screen and (min-device-pixel-ratio: 1.5) {
    .modal.active {
        padding: 1vh 1vw;
    }
    
    .server-timer-modal {
        max-width: min(900px, 80vw);
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .server-timer-content {
        padding: 15px;
        min-height: 280px;
    }
}

/* Very high zoom levels */
@media screen and (max-width: 600px) {
    .modal.active {
        padding: 5px;
        align-items: flex-start;
        padding-top: 10vh;
    }
    
    .server-timer-modal {
        max-width: 95vw;
        flex-direction: column;
    }
    
    .modal-side-ad {
        display: none;
    }
    
    #proxyConfirmation {
        position: sticky;
        bottom: 0;
        background: #1a1a1a;
        padding: 15px;
        border-top: 1px solid #333;
        margin-top: auto;
    }
}

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

    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* Replace all instances of #408d28 with #0a5b58 */
.article-content h3 {
    font-size: 1.8rem;
    color: #0a5b58;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.article-content h4 {
    font-size: 1.4rem;
    color: white;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-content p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 16px;
}

.internal-link {
    color: #0a5b58;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.internal-link:hover {
    border-bottom-color: #0a5b58;
}

.external-link {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.external-link:hover {
    border-bottom-color: #60a5fa;
}

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

.content-category {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}

.content-category h4 {
    color: #0a5b58;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.content-category p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.article-cta {
    background: linear-gradient(145deg, #0a5b58, #5ba83a);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.article-cta p {
    color: white;
    margin: 0;
    font-weight: 600;
}

.cta-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.cta-link:hover {
    color: #ffddcc;
}

.article-footer {
    padding: 30px 40px;
    border-top: 1px solid #333;
    background: #0a0a0a;
}

.article-tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: #2a2a2a;
    color: #cccccc;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin: 0 5px 5px 0;
    border: 1px solid #444;
}

.article-share p {
    color: #888;
    margin-bottom: 10px;
    font-size: 14px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #cccccc;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #000000;
}

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

.genre-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.genre-card:hover {
    background: #2a2a2a;
    transform: translateY(-5px);
}

.genre-card i {
    color: #0a5b58;
    font-size: 48px;
    margin-bottom: 15px;
}

.genre-card h4 {
    font-size: 18px;
    font-weight: 600;
}

/* Page Styles */
.page-header {
    text-align: center;
    padding: 100px 20px 50px;
    background: #111111;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.info-icon {
    font-size: 80px;
    color: #0a5b58;
    margin-bottom: 30px;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    background: #111111
}