/* Luxury Black Gold Theme */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-light: #F5E8AA;
    --black-primary: #0A0A0A;
    --black-secondary: #1A1A1A;
    --black-tertiary: #2A2A2A;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #888888;
    --white: #FFFFFF;
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-black: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--black-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.main-header {
    background: var(--gradient-black);
    border-bottom: 2px solid var(--gold-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-dark);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--gradient-gold);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

.btn-register {
    background: var(--gradient-gold);
    color: var(--black-primary) !important;
    padding: 12px 25px !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease !important;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.7)),
                url('../images/banner-1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--black-tertiary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-primary);
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.featured-card {
    background: var(--black-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-dark);
}

.featured-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.card-content {
    padding: 25px;
}

.card-category {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--gold-primary);
}

.card-excerpt {
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.read-more {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--gold-secondary);
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    gap: 25px;
}

.post-card {
    background: var(--black-secondary);
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--gray-dark);
    transition: all 0.3s ease;
}

.post-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.post-image {
    width: 150px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.post-content h3 a {
    color: var(--white);
    text-decoration: none;
}

.post-content h3 a:hover {
    color: var(--gold-primary);
}

.post-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: var(--gray-medium);
    font-size: 0.85rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--black-secondary);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--gray-dark);
}

.widget-title {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Games Widget */
.games-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: var(--black-tertiary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.game-item:hover {
    background: var(--black-primary);
    border: 1px solid var(--gold-primary);
}

.game-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.game-item span {
    font-weight: 600;
}

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.providers-grid img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    background: var(--black-tertiary);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.providers-grid img:hover {
    transform: scale(1.05);
}

/* CTA Widget */
.cta-widget {
    text-align: center;
    background: linear-gradient(135deg, var(--black-secondary) 0%, #1a1a2e 100%);
    border: 2px solid var(--gold-primary);
}

.cta-banner {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.main-footer {
    background: var(--gradient-black);
    border-top: 2px solid var(--gold-primary);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.footer-logo p {
    color: var(--gray-light);
    margin-top: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a,
.footer-column ul li {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--gray-dark);
    color: var(--gray-medium);
}

.footer-bottom a {
    color: var(--gold-primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--black-primary);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--gold-primary);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .post-card {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        width: 100%;
        height: 200px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-card,
.post-card,
.widget {
    animation: fadeIn 0.6s ease-out;
}