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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2a3441 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Cursor Trail Effect */
.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #c89b3c, #f0e6d2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
    animation: trailFade 0.5s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #c89b3c, #f0e6d2);
    color: #0f1419;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 155, 60, 0.5);
}

/* Header Styles */
.header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #c89b3c;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand .brand-link {
    font-size: 2rem;
    font-weight: bold;
    color: #c89b3c;
    text-decoration: none;
    text-shadow: 0 0 10px #c89b3c;
    transition: all 0.3s ease;
}

.nav-brand .brand-link:hover {
    text-shadow: 0 0 20px #c89b3c, 0 0 30px #c89b3c;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #c89b3c;
    background: rgba(200, 155, 60, 0.1);
    box-shadow: 0 0 15px rgba(200, 155, 60, 0.3);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 46, 0.8));
    margin-bottom: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #f0e6d2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #c89b3c, 0 0 20px #c89b3c, 0 0 30px #c89b3c;
    }
    to {
        text-shadow: 0 0 20px #c89b3c, 0 0 30px #c89b3c, 0 0 40px #c89b3c;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #c89b3c, #f0e6d2);
    color: #0f1419;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.4);
    font-weight: bold;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 155, 60, 0.6);
}

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

.btn-secondary:hover {
    background: #c89b3c;
    color: #0f1419;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    min-height: 300px;
    object-fit: contain;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: #f0e6d2;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px #c89b3c;
}

/* Latest News Section */
.latest-news {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 155, 60, 0.3);
    border-color: #c89b3c;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    display: block;
}

.news-card img:not([src]),
.news-card img[src=""] {
    background: linear-gradient(45deg, #c89b3c, #f0e6d2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card img:not([src]):after,
.news-card img[src=""]:after {
    content: "Image Loading...";
    color: #000;
    font-weight: bold;
}

.news-card:hover img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: bold;
}

.news-card h3 {
    color: #fff;
    margin: 0.5rem 0;
    font-size: 1.3rem;
}

.news-card p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    text-shadow: 0 0 10px #00d4ff;
}

/* Featured Videos Section */
.featured-videos {
    padding: 4rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.videos-grid-improved {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
    min-height: 300px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #c89b3c, #f0e6d2);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 1;
    text-align: center;
    padding: 1rem;
    color: #c89b3c;
    font-weight: bold;
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(200, 155, 60, 0.2);
    margin: 0 2rem;
}

.timeline-content h3 {
    color: #f0e6d2;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #d0d0d0;
    line-height: 1.6;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #c89b3c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f0e6d2;
    z-index: 2;
}

/* Game Info Section */
.game-info {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.info-card h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 1rem;
    border-top: 2px solid #00d4ff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
    text-decoration: none;
    text-shadow: 0 0 10px #00d4ff;
}

.footer-brand p {
    color: #ccc;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-group ul li a:hover {
    color: #00d4ff;
    text-shadow: 0 0 5px #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 140px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .news-grid,
    .video-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Page Hero for internal pages */
.page-hero {
    padding: 120px 0 4rem;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 46, 0.8));
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #00d4ff;
}

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

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-main {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.content-main h2 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-main h3 {
    color: #fff;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.content-main p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-main ul {
    color: #ccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-main li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.champion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.champion-card {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.champion-card h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

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

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.sidebar-card h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.facts-list, .links-list {
    list-style: none;
    padding: 0;
}

.facts-list li, .links-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    color: #ccc;
}

.links-list a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.links-list a:hover {
    text-shadow: 0 0 10px #00d4ff;
}

.cta-section {
    background: rgba(0, 212, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.cta-section h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-section h2 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Specific styles for select dropdown */
.form-group select {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
}

.form-group select option {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-card h3, .contact-card h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.contact-card p, .contact-card ul {
    color: #ccc;
    line-height: 1.6;
}

.contact-card ul {
    padding-left: 1.5rem;
}

.contact-card a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    text-shadow: 0 0 5px #00d4ff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: block;
    padding: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.success-message h3 {
    color: #00ff00;
    margin-bottom: 1rem;
}

.success-message p {
    color: #ccc;
}

/* Blog Styles */
.featured-article {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content {
    padding: 2rem;
}

.post-category {
    background: #00d4ff;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.featured-content h2 {
    margin: 1rem 0;
}

.featured-content h2 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-content h2 a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px #00d4ff;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #999;
}

.featured-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-categories {
    padding: 2rem 0;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #00d4ff;
    color: #000;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-content h3 a:hover {
    color: #00d4ff;
}

.blog-content .post-meta {
    margin: 0.5rem 0 1rem;
}

.read-time {
    color: #00d4ff;
}

.blog-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.load-more-section {
    text-align: center;
    padding: 2rem 0;
}

.newsletter-signup {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-content p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Video Page Styles */
.featured-video-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.featured-video-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 2rem;
}

.video-info h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.video-date {
    color: #00d4ff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.video-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.video-categories {
    padding: 2rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #00d4ff;
    color: #000;
}

.video-details h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.video-details .video-date {
    display: block;
    margin-bottom: 0.5rem;
}

.video-details p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.placeholder-video {
    position: relative;
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.placeholder-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2;
}

.video-updates {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.updates-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.update-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.update-card h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.update-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Blog Article Styles */
.blog-article {
    padding: 120px 0 4rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #c89b3c;
}

.breadcrumb a {
    color: #c89b3c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-shadow: 0 0 5px #c89b3c;
}

.article-title {
    font-size: 2.5rem;
    color: #f0e6d2;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #c89b3c;
}

.article-image {
    margin: 2rem 0 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-image img {
    max-width: 100%;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.article-image caption {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #c89b3c;
    text-align: center;
    font-size: 0.95rem;
    text-shadow: 0 0 5px rgba(200, 155, 60, 0.3);
    max-width: 600px;
    line-height: 1.4;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.article-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f0e6d2;
    font-weight: 500;
}

.article-content h2 {
    color: #c89b3c;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    border-bottom: 2px solid rgba(200, 155, 60, 0.3);
    padding-bottom: 0.5rem;
}

.article-content h3 {
    color: #f0e6d2;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.article-content p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.article-content ul, .article-content ol {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.article-content strong {
    color: #f0e6d2;
}

.cta-box {
    background: rgba(200, 155, 60, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(200, 155, 60, 0.3);
}

.cta-box h3 {
    color: #c89b3c;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.article-footer {
    margin-top: 3rem;
    text-align: center;
}

.article-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Related Articles */
.related-articles {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 155, 60, 0.3);
}

.related-articles h3 {
    color: #c89b3c;
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 155, 60, 0.3);
    border-color: #c89b3c;
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: 1rem;
    margin: 0;
}

.related-card h4 a {
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.related-card h4 a:hover {
    text-shadow: 0 0 5px #c89b3c;
}

.related-date {
    display: block;
    padding: 0 1rem 1rem;
    color: #999;
    font-size: 0.9rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.share-btn {
    background: rgba(200, 155, 60, 0.1);
    color: #c89b3c;
    border: 1px solid #c89b3c;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.share-btn:hover {
    background: #c89b3c;
    color: #0f1419;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.3);
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.legal-content h2 {
    color: #00d4ff;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: #fff;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.legal-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #ccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    text-shadow: 0 0 5px #00d4ff;
}

.last-updated {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
    margin-bottom: 2rem;
}

.disclaimer-box {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.disclaimer-box h3 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    color: #ccc;
}

@media (max-width: 768px) {
    .content-grid,
    .contact-grid,
    .featured-post,
    .featured-video-wrapper {
        grid-template-columns: 1fr;
    }
    
    .champion-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters,
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
}
