/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ff1a1a;
    --dark-red: #cc0000;
    --gold: #ffd700;
    --dark-gold: #cc9900;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #4a4a4a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-bar-link:hover {
    color: var(--gold);
}

.top-bar-select {
    background: transparent;
    border: 1px solid var(--light-gray);
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-bar-select:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.top-bar-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    border-bottom: 2px solid var(--primary-red);
    position: sticky;
    top: 32px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 26, 26, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
    display: inline-block;
    line-height: 0;
}

.logo-section .logo-link {
    position: relative;
    z-index: 1;
    display: block;
    line-height: 0;
}

.logo-section .logo {
    max-height: 100px;
    height: auto;
    width: auto;
    max-width: 400px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: block;
}

.logo-section .logo:hover {
    transform: scale(1.05);
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav .nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav .nav-menu a:hover,
.main-nav .nav-menu a.active {
    color: var(--gold);
}

.main-nav .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary-red));
    transition: width 0.3s ease;
}

.main-nav .nav-menu a:hover::after,
.main-nav .nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login,
.btn-premium {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--text-light);
}

.btn-login:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-premium {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Silhouettes Section */
.silhouettes-section {
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.silhouettes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/backgrounds/muurbreed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
    z-index: 0;
}

.silhouettes-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.silhouettes-section .container {
    position: relative;
    z-index: 2;
}

.silhouettes-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    width: 100%;
}

.silhouette-img {
    height: 80px;
    width: auto;
    flex: 1 1 auto;
    max-width: 120px;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 0, 0, 0.3));
    animation: silhouetteFadeIn 0.8s ease forwards;
    object-fit: contain;
}

.silhouette-img:nth-child(1) {
    animation-delay: 0.1s;
}

.silhouette-img:nth-child(2) {
    animation-delay: 0.2s;
}

.silhouette-img:nth-child(4) {
    animation-delay: 0.4s;
}

.silhouette-img:nth-child(5) {
    animation-delay: 0.5s;
}

.silhouette-img:nth-child(7) {
    animation-delay: 0.7s;
}

.silhouette-img:nth-child(8) {
    animation-delay: 0.8s;
}

.silhouette-img:nth-child(11) {
    animation-delay: 1.1s;
}

.silhouette-img:nth-child(12) {
    animation-delay: 1.2s;
}

.silhouette-img:hover,
.sponsor-logo-link:hover {
    opacity: 1 !important;
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 4px 15px rgba(255, 0, 0, 0.5));
    cursor: pointer;
}

.sponsor-logo-link:hover {
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.7));
}

.sponsor-logo-link:hover .sponsor-logo-small {
    border-color: var(--gold);
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.7));
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes silhouetteFadeIn {
    to {
        opacity: 0.7;
        transform: translateY(0) scale(1);
    }
}

.sponsor-logo-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    height: 80px;
    flex: 1 1 auto;
    max-width: 150px;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation: silhouetteFadeIn 0.8s ease forwards;
    transition: all 0.3s ease;
}

.sponsor-logo-link:nth-child(3) {
    animation-delay: 0.3s;
}

.sponsor-logo-link:nth-child(6) {
    animation-delay: 0.6s;
}

.sponsor-logo-link:nth-child(10) {
    animation-delay: 1s;
}

.sponsor-logo-small {
    height: 80px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.5);
}

.sponsor-logo-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.sponsor-logo-link:hover .sponsor-logo-small {
    border-color: var(--gold);
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.7));
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.sponsor-tooltip {
    display: none;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    min-height: 600px;
    height: 70vh;
    max-height: 800px;
    overflow: hidden;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.5s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.banner-content {
    width: 100%;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 40px;
    padding: 0;
    margin: 0;
    min-height: 400px;
}

.hero-welcome-header {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    animation: welcomeHeaderSlideIn 1s ease 0.8s forwards;
}

@keyframes welcomeHeaderSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text-box {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 5% 7%;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    text-align: center;
    overflow: hidden;
    flex: 1 1 50%;
    min-width: 0;
    max-width: none;
    min-height: 400px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    animation: heroBoxSlideIn 1s ease 1s forwards;
}

@keyframes heroBoxSlideIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-text-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.hero-text-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.5vh, 15px);
    padding: clamp(15px, 3vh, 30px);
    box-sizing: border-box;
}

.welcome-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.8);
    animation: welcomeImagePop 0.8s ease 1.3s forwards;
}

@keyframes welcomeImagePop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: clamp(10px, 2vh, 20px);
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    color: #ff0000;
}

.hero-welcome-text-image {
    max-width: 100%;
    width: auto;
    height: 200px;
    display: block;
    object-fit: contain;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.8);
    animation: welcomeImagePop 0.8s ease 1.2s forwards;
}

@keyframes heroEroticTextFadeIn {
    to {
        opacity: 1;
    }
}

.hero-welcome-text {
    font-size: clamp(1.3rem, 2.8vw, 2.2rem);
    color: #ff0000;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: none;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 0, 0, 0.5);
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Apple Chancery', 'Script MT Bold', 'Segoe Script', 'Kunstler Script', cursive;
    position: relative;
    text-decoration: none;
    margin: 0;
    white-space: nowrap;
    font-style: normal;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    padding: 0 3%;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleFadeUp 0.8s ease 1.6s forwards;
}

@keyframes subtitleFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    display: inline-block;
    padding: clamp(10px, 1.8vh, 16px) clamp(25px, 4.5vw, 45px);
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: clamp(13px, 1.4vw, 17px);
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 26, 26, 0.5);
    white-space: nowrap;
    margin: 0;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: buttonFadeUp 0.8s ease 1.9s forwards;
}

@keyframes buttonFadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 26, 26, 0.7);
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
}

/* Categories Section */
.categories-section {
    padding: 60px 0;
    background: var(--dark-gray);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    padding: 30px 20px 20px;
}

.category-name {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sort-select {
    padding: 10px 20px;
    background: var(--medium-gray);
    border: 2px solid var(--light-gray);
    color: var(--text-light);
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover {
    border-color: var(--gold);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.content-item {
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.content-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 26, 26, 0.3);
}

.content-link {
    text-decoration: none;
    display: block;
}

.thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: var(--black);
}

.thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-item:hover .thumbnail {
    transform: scale(1.1);
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.premium-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-info {
    padding: 15px;
}

.content-title {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-gray);
}

.views {
    color: var(--text-gray);
}

/* Load More Button */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    padding: 15px 50px;
    background: linear-gradient(135deg, var(--medium-gray), var(--dark-gray));
    border: 2px solid var(--light-gray);
    color: var(--text-light);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-load-more:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Sponsoring Section */
.sponsoring-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    margin: 60px 0;
    border-top: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
}

.sponsoring-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sponsoring-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.sponsoring-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.sponsoring-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.sponsoring-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.sponsoring-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.sponsor-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
    background: rgba(0, 0, 0, 0.8);
}

.sponsor-image-wrapper {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.sponsor-card:hover .sponsor-image-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.sponsor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sponsor-action {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-action {
    background: var(--primary-red);
    color: var(--text-light);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

/* Premium Section */
.premium-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    margin-top: 60px;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.premium-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.premium-text {
    padding: 20px;
}

.premium-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-premium-large {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-premium-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
}

/* Footer */
.main-footer {
    background: var(--black);
    border-top: 2px solid var(--primary-red);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo {
    max-height: 80px;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.05);
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links,
.partner-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-links a img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-links a:hover img,
.partner-links a:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .premium-content {
        grid-template-columns: 1fr;
    }
    
    .sponsoring-logos {
        grid-template-columns: 1fr;
    }
    
    .sponsoring-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        height: auto;
        padding: 5px 0;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar-link {
        font-size: 11px;
    }
    
    .main-header {
        top: auto;
    }
    
    .silhouette-img {
        height: 60px;
    }
    
    .silhouettes-row {
        gap: 15px;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo-section {
        padding: 0;
        margin-bottom: 10px;
    }
    
    .logo-section .logo {
        max-height: 70px;
        max-width: 250px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-welcome-header {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    .hero-text-box {
        width: 100%;
        max-width: 100%;
        padding: 3% 5%;
    }
    
    .welcome-image {
        max-width: 80%;
        max-height: 250px;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .silhouette-img {
        height: 50px;
    }
    
    .silhouettes-row {
        gap: 10px;
        padding: 0 10px;
    }
    
    .logo-section {
        padding: 0;
    }
    
    .logo-section .logo {
        max-height: 60px;
        max-width: 200px;
    }
    
    .hero-banner {
        height: auto;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-text-box {
        width: 85%;
        max-width: 100%;
        padding: 3% 4%;
    }
    
    .welcome-image {
        max-width: 55%;
        max-height: 30%;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn-login,
    .btn-premium {
        padding: 8px 15px;
        font-size: 11px;
    }
}

