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

:root {
    --primary-color: #e50914;
    --secondary-color: #221f1f;
    --dark-bg: #141414;
    --darker-bg: #000000;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-color: #46d369;
    --warning-color: #ffc107;
    --border-color: #333333;
    --card-bg: rgba(42, 42, 42, 0.8);
    --hover-bg: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Netflix Sans', 'Helvetica Neue', Arial, sans-serif;
    background: #2c2c2c;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Custom Heading Styles */
.small-heading {
    font-size: 1.5rem; /* Smaller font size */
    font-weight: bold;
    margin-bottom: 15px;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo-text {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

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

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a.active,
.nav a:hover {
    color: var(--text-primary);
    font-weight: 500;
}

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

.header-actions i {
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-actions i:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23141414"/><stop offset="100%" style="stop-color:%23000000"/></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/><circle cx="200" cy="150" r="100" fill="rgba(229,9,20,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(70,211,105,0.1)"/><circle cx="1000" cy="600" r="80" fill="rgba(255,193,7,0.1)"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 400;
}

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

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #b8070f;
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(109, 109, 110, 0.7);
    color: white;
}

.btn-secondary:hover {
    background: rgba(109, 109, 110, 0.9);
    transform: scale(1.05);
}

/* Server Selection */
.server-selection {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Article Section */
.article-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.movie-article {
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    padding: 30px;
}

.movie-article h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

.article-meta i {
    color: var(--primary-color);
}

.article-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.article-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    max-width: 800px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.read-more:hover {
    color: #ff4d57;
    transform: translateX(5px);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.section-header i {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.server-card {
    background: var(--card-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.server-card:hover {
    background: var(--hover-bg);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.server-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.server-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.server-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.status-online {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.server-select-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-select-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.server-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    margin-top: 20px;
}

.server-notice i {
    color: var(--warning-color);
    font-size: 1rem;
}

.server-notice span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Countdown Section */
.countdown-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.countdown-container {
    text-align: center;
    max-width: 500px;
    padding: 40px;
}

.countdown-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.countdown-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.countdown-circle {
    position: relative;
    display: inline-block;
}

.countdown-svg {
    transform: rotate(-90deg);
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin: 30px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    border-radius: 4px;
    transition: width 0.1s linear;
    width: 0%;
}

.countdown-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

.footer p {
    color: var(--text-secondary);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .countdown-container {
        padding: 20px;
        margin: 0 20px;
    }
    
    .countdown-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .server-selection h3 {
        font-size: 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

/* Featured Movies */
.featured-movies {
    padding: 50px 0;
}

.featured-movies h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

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

.movie-card {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.movie-card:hover {
    transform: scale(1.05);
}

.movie-poster {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    border-radius: 8px;
    overflow: hidden;
}

.movie-poster.desert {
    background: linear-gradient(135deg, #8b4513, #cd853f);
}

.movie-poster.city {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.movie-poster.ocean {
    background: linear-gradient(135deg, #006994, #0077be);
}

.movie-rating {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--warning-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.movie-info {
    padding: 15px 0;
}

.movie-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.movie-details {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.movie-details span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

.social-links i {
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: var(--primary-color);
}

/* Server Popup Styles */
.server-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.server-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.server-popup {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.server-popup-overlay.show .server-popup {
    transform: scale(1) translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-color), #b8070f);
}

.popup-header h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-content {
    padding: 20px;
}

.server-info-popup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.server-status-popup {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
}

.server-info-popup p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.server-info-popup ul {
    list-style: none;
    padding: 0;
}

.server-info-popup li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.server-info-popup li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

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

.ad-space {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ad-space:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.ad-space:nth-child(1) { background: linear-gradient(135deg, #0d4f3c, #1a7a5e); }
.ad-space:nth-child(2) { background: linear-gradient(135deg, #4a0e4e, #7e1a7e); }
.ad-space:nth-child(3) { background: linear-gradient(135deg, #1a237e, #3949ab); }
.ad-space:nth-child(4) { background: linear-gradient(135deg, #e65100, #ff9800); }
.ad-space:nth-child(5) { background: linear-gradient(135deg, #d32f2f, #f44336); }
.ad-space:nth-child(6) { background: linear-gradient(135deg, #512da8, #673ab7); }
.ad-space:nth-child(7) { background: linear-gradient(135deg, #00695c, #009688); }

.ad-content h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.ad-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.ad-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.popup-message {
    background: rgba(70, 211, 105, 0.1);
    border: 1px solid rgba(70, 211, 105, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.popup-message p {
    color: var(--accent-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-continue, .btn-cancel {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.btn-continue {
    background: var(--primary-color);
    color: white;
}

.btn-continue:hover {
    background: #b8070f;
    transform: scale(1.05);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Page Overlay Styles */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    z-index: 6000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-overlay.show {
    opacity: 1;
    visibility: visible;
}

.page-container {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    width: 900px;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.page-overlay.show .page-container {
    transform: scale(1) translateY(0);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--dark-bg), var(--secondary-color));
}

.page-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.page-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.page-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.page-content {
    padding: 30px;
}

.page-text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-text h4 {
    color: var(--text-primary);
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.page-text h5 {
    color: var(--text-primary);
    margin: 15px 0 5px 0;
    font-size: 1rem;
}

.page-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.page-text ul {
    color: var(--text-secondary);
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-text li {
    margin-bottom: 5px;
}

.contact-info, .faq-item, .help-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.page-ads-container {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.page-ads-container h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-ads-container h3 i {
    color: var(--warning-color);
}

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

.page-ad {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.page-ad:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.ad-image {
    height: 120px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.ad-vpn { background: linear-gradient(135deg, #0d4f3c, #1a7a5e); }
.ad-streaming { background: linear-gradient(135deg, #4a0e4e, #7e1a7e); }
.ad-gaming { background: linear-gradient(135deg, #1a237e, #3949ab); }
.ad-antivirus { background: linear-gradient(135deg, #e65100, #ff9800); }
.ad-education { background: linear-gradient(135deg, #d32f2f, #f44336); }
.ad-shopping { background: linear-gradient(135deg, #512da8, #673ab7); }
.ad-fitness { background: linear-gradient(135deg, #00695c, #009688); }

.ad-info {
    padding: 15px;
}

.ad-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ad-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.ad-action-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.ad-action-btn:hover {
    background: #b8070f;
    transform: scale(1.02);
}

.back-to-home {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.home-btn {
    background: var(--secondary-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-btn:hover {
    background: var(--hover-bg);
    transform: scale(1.05);
}
.side-ad {
    position: fixed;
    top: 100px;
    z-index: 999;
 
  }
  
  .left-ad {
    left: 10px;
  }
  
  .right-ad {
    right: 10px;
  }
  