* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5fb4;
    --secondary: #e53e3e;
    --accent: #38a169;
    --dark: #1a202c;
    --light: #f7fafc;
    --win: #2ecc71;
    --loss: #e74c3c;
    --pending: #3498db;
    --gold: #f39c12;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--light);
    min-height: 100vh;
}

header {
    background: linear-gradient(90deg, var(--dark) 0%, var(--primary) 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 3px solid var(--accent);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo i {
    color: #ffd700;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s;
}

nav a:hover, nav a.active {
    background: rgba(255,255,255,0.2);
}

nav a.vip {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: var(--dark);
    font-weight: bold;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?w=1600');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn, .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 1rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn:hover, .btn-primary:hover {
    transform: scale(1.05);
}

.home-container, .single-news-container {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.main-content {
    flex: 3;
}

.sidebar {
    flex: 1;
}

.predictions-grid, .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.prediction-card, .news-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--pending);
    transition: transform 0.3s;
}

.prediction-card:hover, .news-card:hover {
    transform: translateY(-5px);
}

.prediction-card.win {
    border-left-color: var(--win);
}

.prediction-card.loss {
    border-left-color: var(--loss);
}

.sport-badge {
    display: inline-block;
    background: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.status-badge.pending {
    background: var(--pending);
}

.status-badge.win {
    background: var(--win);
}

.status-badge.loss {
    background: var(--loss);
}

.news-card img, .featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.sidebar-ad {
    margin-bottom: 1.5rem;
}

.sidebar-ad img {
    width: 100%;
    border-radius: 10px;
}

.vip-teaser {
    background: linear-gradient(135deg, var(--gold), #e67e22);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.btn-vip {
    display: inline-block;
    background: white;
    color: var(--gold);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    font-weight: bold;
}

.sliding-posts-section {
    margin-top: 2rem;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.slider-card {
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.slider-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.slider-card h4 {
    padding: 0.5rem;
    font-size: 0.9rem;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.share-buttons {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons a {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    color: white;
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }

.in-content-ad {
    margin: 2rem 0;
    text-align: center;
}

.in-content-ad img {
    max-width: 100%;
    border-radius: 10px;
}

.footer-ad {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
}

footer {
    background: var(--dark);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.news-content {
    line-height: 1.8;
    margin: 1.5rem 0;
}

.news-content p {
    margin-bottom: 1rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

@media (max-width: 768px) {
    .home-container, .single-news-container {
        flex-direction: column;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
}