/*
Theme Name: TaekwondoMaster
Theme URI: https://example.com
Description: A killer animated WordPress theme for taekwondo practitioners worldwide. Features heavy animations, black & white design, and modern UI elements.
Version: 1.0.0
Author: Your Name
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-slide-up {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    opacity: 0.1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Enhanced Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Orbitron', monospace;
}

.logo:hover {
    transform: scale(1.05);
    color: #fff;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: orange;
}

.logo-main {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.5rem;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Enhanced Navigation */
.main-nav {
    position: relative;
}

.nav-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 120%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.main-nav:hover .nav-backdrop {
    opacity: 1;
}

.nav-menu,
#primary-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
}

.nav-link,
.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    text-wrap: nowrap;
}

.nav-link::before,
.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.nav-link:hover::before,
.main-nav a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover,
.main-nav a:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger-line {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hamburger-line:nth-child(1) {
    top: 0px;
}

.hamburger-line:nth-child(2) {
    top: 10px;
}

.hamburger-line:nth-child(3) {
    top: 20px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-nav ul {
    overflow-y: scroll;
    width: 100%;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    margin: 0 0 3rem 0;
    padding: 0;
}

.mobile-menu-item {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-menu-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-item:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-item:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu-item:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.mobile-social {
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
}

.mobile-nav-overlay.active .mobile-social {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1112px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

@media (min-width: 1113px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-nav-overlay {
        display: none !important;
    }

    .main-nav {
        display: block;
    }
}

.contact-social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #222;
    border-radius: 50%;
    border: 1px solid #444;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    background: #333;
    border-color: #555;
    transform: translateY(-2px);
}

.contact-social-icon {
    width: 22px;
    height: 22px;
    fill: #ccc;
    transition: fill 0.3s ease;
}

.contact-social-link:hover .contact-social-icon {
    fill: #fff;
}

/* Loading Overlay Enhanced */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    text-align: center;
}





.spinner-ring {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* Hero Section */
/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
}

/* Add dark overlay using pseudo element */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

/* ===== ACTION PHOTOS ===== */
.hero-action-photos {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1400px;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.action-photo img {
    height: 420px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
    animation: floatY 5s ease-in-out infinite alternate;
}

.action-photo-1 img {
    animation-delay: 0s;
}

.action-photo-2 img {
    animation-delay: 1s;
}

/* ===== FLOATING DECOR ELEMENTS ===== */
.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatXY 10s linear infinite alternate;
}

.circle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    top: 35%;
    right: 30%;
    animation-delay: 4s;
}

/* ===== CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-logo {
    font-size: 2.0rem;
    font-weight: 800;
    color: #ffb300;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-slogan {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

.hero-quote {
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
}

.hero-quote blockquote {
    margin: 0 auto;
    font-style: italic;
    color: #f5f5f5;
    max-width: 600px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-quote .quote-text {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.hero-quote .quote-author {
    display: block;
    font-size: 1rem;
    opacity: 0.85;
}

/* ===== BUTTONS ===== */
.btn,
.btn.btn-outline {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.2s;
}

.btn {
    background: #d32f2f;
    color: #fff;
    border: none;
}

.btn:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

.btn.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn.btn-outline:hover {
    background: #fff;
    color: #121212;
    transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-25px);
    }
}

@keyframes floatXY {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 500px) {
    .action-photo-2{
        display: none;
        
    }
    .action-photo-1{
        opacity: 0.5;
    }
        .hero-logo{
        font-size: 0.9rem;
    }
    .hero-slogan{
        font-family: 0.7rem;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    /* .hero-action-photos {
        display: none;
    } */



    .hero-logo {
        font-size: 1.5rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .btn,
    .btn.btn-outline {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: rotateY(10deg) translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    transform: rotateY(-10deg) translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 1rem auto;
}

/* Events Slider */
.events-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #111;
}

.slider-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #111 0%, #222 100%);
}

.slide h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.slide-date {
    color: #999;
    margin-bottom: 1rem;
}

.slide-description {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-item {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
}

.news-item.in-view {
    transform: translateY(0);
    opacity: 1;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.news-image {
    height: 200px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.news-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-excerpt {
    color: #ccc;
    margin-bottom: 1rem;
}

/* Medal Highlights */
.medal-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.medal-item {
    background: linear-gradient(135deg, #222 0%, #111 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
    opacity: 0;
}

.medal-item.in-view {
    transform: scale(1);
    opacity: 1;
}

.medal-item:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
}

.medal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.medal-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.medal-event {
    color: #999;
    margin-bottom: 1rem;
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-link {
    background: linear-gradient(135deg, #222 0%, #111 100%);
    color: #d6d5d5;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px) rotateX(10deg);
    opacity: 0;
    box-shadow: #555 0px 0px 4px;
}

.quick-link.in-view {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
}

.quick-link:hover {
    transform: translateY(-10px) rotateY(10deg);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #a5a5a5 0%, #e0e0e0 100%);
    color: black;
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Footer */
.site-footer {
    background: #111;
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        font-size: 1.2rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .hero-images {
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        width: 150px;
        height: 150px;
    }

    .section-title {
        font-size: 2rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .header-content {
        gap: 1rem;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#n2-ss-1 .n2-ss-slide-background {
    background-size: contain !important;
}






.lead-content {
    overflow-x: scroll;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0;
}

.news-item {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    position: relative;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    border-color: #555;
}

.news-thumb {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumb img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-title {
    color: #ffffff;
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-decoration: none;
}

.news-title:hover {
    color: #4CAF50;
    cursor: pointer;
}

.news-desc {
    color: #cccccc;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 0.85em;
    color: #888;
}

.news-date {
    color: #4CAF50;
    font-weight: 600;
}

.news-category {
    background: #4CAF50;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-no-results {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
}

.newsroom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.newsroom-header {
    text-align: center;
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 3px solid #333;
}

.newsroom-main-title {
    font-size: 4em;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.newsroom-subtitle {
    font-size: 1.3em;
    color: #888;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Section Header Styles */
.news-section-header {
    text-align: center;
    margin: 80px 0 50px 0;
    padding: 0 20px;
}

.news-section-title {
    font-size: 2.8em;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.news-section-title.news-color {
    color: #4CAF50;
}

.news-section-title.stories-color {
    color: #FF9800;
}

.news-section-title.sponsor-color {
    color: #2196F3;
}

.news-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 2px;
}

.news-section-title.news-color::after {
    background: #4CAF50;
}

.news-section-title.stories-color::after {
    background: #FF9800;
}

.news-section-title.sponsor-color::after {
    background: #2196F3;
}

/* Grid Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin: 50px 0 80px 0;
    padding: 0;
}

.news-item {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 2px solid #333;
    position: relative;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.news-item:hover {
    border-color: #4CAF50;
}

.stories-item:hover {
    border-color: #FF9800;
}

.sponsor-item:hover {
    border-color: #2196F3;
}

.news-thumb {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-item:hover .news-thumb img {
    transform: scale(1.08);
}

.news-content {
    padding: 30px;
}

.news-title {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #4CAF50;
}

.stories-item:hover .news-title {
    color: #FF9800;
}

.sponsor-item:hover .news-title {
    color: #2196F3;
}

.news-desc {
    color: #cccccc;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9em;
}

.news-date {
    font-weight: 600;
}

.news-category {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    color: #4CAF50;
}

.news-category {
    background: #4CAF50;
    color: white;
}

.stories-date {
    color: #FF9800;
}

.stories-category {
    background: #FF9800;
    color: white;
}

.sponsor-date {
    color: #2196F3;
}

.sponsor-category {
    background: #2196F3;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsroom-main-title {
        font-size: 2.5em;
    }

    .news-section-title {
        font-size: 2.2em;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .newsroom-header {
        padding: 50px 0 40px 0;
    }

    .newsroom-main-title {
        font-size: 2em;
        letter-spacing: 1px;
    }

    .news-section-title {
        font-size: 1.8em;
    }

    .news-content {
        padding: 20px;
    }
}