/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gold: #ffd700;
    --accent-gold-bright: #ffed4e;
    --accent-gold-dark: #e6c200;
    --accent-gold-metallic: #ffdf00;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --bg-dark: #0a0a0a;
    --bg-section: #111111;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ffd700 50%, #ffb347 75%, #ffd700 100%);
    --gradient-gold-shine: linear-gradient(135deg, #ffed4e 0%, #ffd700 25%, #ffdf00 50%, #ffed4e 75%, #ffd700 100%);
    --gradient-gold-metallic: linear-gradient(135deg, #ffd700 0%, #ffed4e 20%, #fff700 40%, #ffd700 60%, #ffb347 80%, #ffd700 100%);
    --gradient-gold-transparent: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.95) 50%, rgba(255, 215, 0, 0.9) 100%);
    --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.6);
    --shadow-gold-bright: 0 0 40px rgba(255, 237, 78, 0.8);
    --shadow-gold-intense: 0 0 50px rgba(255, 215, 0, 1);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold-metallic);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-intense);
    background: var(--gradient-gold-shine);
}

.btn-primary:hover::after {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-secondary {
    background: var(--primary-white);
    color: var(--primary-black);
    box-shadow: var(--shadow-dark);
}

.btn-secondary:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    font-size: 18px;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.15);
}

.admin-link {
    background: var(--gradient-gold-metallic) !important;
    color: var(--primary-black) !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.admin-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    opacity: 0;
}

.admin-link:hover {
    background: var(--gradient-gold-shine) !important;
    color: var(--primary-black) !important;
    box-shadow: var(--shadow-gold-intense) !important;
    transform: translateY(-2px);
}

.admin-link:hover::before {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

.admin-link:hover::after {
    width: 0 !important;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 237, 78, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--accent-gold);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Teams Section */
.teams-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--medium-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    height: 300px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.team-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-image img,
.team-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(212,175,55,0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.team-description {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.team-link {
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.team-link:hover {
    background: var(--primary-white);
    transform: scale(1.05);
}

/* Matches Section */
.matches-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--accent-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.match-card {
    background: var(--medium-gray);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.match-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.match-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tournament {
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 120px;
}

.team-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.team-name {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.match-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.vs-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.match-time,
.match-score {
    font-size: 14px;
    color: var(--text-secondary);
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.match-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.match-link {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.match-link.twitch {
    background: #9146ff;
    color: white;
}

.match-link.youtube {
    background: #ff0000;
    color: white;
}

.match-link.discord {
    background: #5865f2;
    color: white;
}

.match-link.vlr {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.match-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Store Section */
.store-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.filter-group label {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    padding: 8px 16px;
    background: var(--medium-gray);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--medium-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-gold);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--accent-gold);
    color: var(--primary-black);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quick-view-btn:hover {
    background: var(--primary-white);
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.add-to-cart-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--medium-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-gold);
}

.news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 10rem;
    left: 7rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-category.tournament {
    background: #f50000;
    color: white;
}

.news-category.qualification {
    background: #0026ff;
    color: white;
}

.news-category.announcement {
    background: #006400;
    color: rgb(255, 255, 255);
}

.news-category.performance {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    margin-bottom: 0.5rem;
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.news-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 1.5;
}

.news-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.news-link:hover {
    color: var(--primary-white);
}

.news-load-more {
    text-align: center;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-subtitle {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.7;
}

.founder-card,
.valorant-card {
    display: flex;
    gap: 2rem;
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.founder-card:hover,
.valorant-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.founder-image,
.valorant-image {
    flex: 0 0 120px;
}

.founder-image img,
.valorant-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.founder-info,
.valorant-info {
    flex: 1;
}

.founder-name,
.valorant-name {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.founder-title,
.valorant-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-description,
.valorant-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);

  /* Responsive height */
  aspect-ratio: 16 / 9; /* maintains consistent box size */
  background-color: #000; /* optional fallback */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the container */
  object-position: center center; /* center subject */
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05); /* subtle zoom */
}


.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}



/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--medium-gray);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition-smooth);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 8px 0;
}

.social-links a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    font-size: 20px;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 4px 0;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0.5rem;
}

/* Chatbot */
/* ===== CHATBOT CONTAINER ===== */
#chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ===== CHATBOT TOGGLE BUTTON ===== */
.chatbot-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  border: none;
  cursor: pointer;
  box-shadow: 
    0 8px 32px rgba(243, 156, 18, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  position: relative;
  overflow: hidden;
}

.chatbot-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chatbot-toggle:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 12px 40px rgba(243, 156, 18, 0.4),
    0 6px 20px rgba(0, 0, 0, 0.15);
}

.chatbot-toggle:hover::before {
  opacity: 1;
}

.chatbot-toggle:active {
  transform: translateY(0) scale(1.02);
}

@media (max-width: 600px) {
  #chatbot-container {
    transform: translateX(-20rem); /* pull it a bit left into the screen */
    bottom: 1rem;
  }

  .chatbot-toggle {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
/* ===== CHAT MODAL ===== */
.chat-modal {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  height: 520px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.chat-modal.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

/* ===== CHAT HEADER ===== */
.chat-header {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.chat-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.chat-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  z-index: 1;
  position: relative;
}

.chat-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1;
  position: relative;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* ===== CHAT BODY ===== */
.chat-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fafafa;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* ===== CHAT MESSAGES ===== */
.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.user-message {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  align-self: flex-end;
  margin-left: auto;
  border-bottom-right-radius: 6px;
}

.chat-message.bot-message {
  background: white;
  color: #2c3e50;
  border: 1px solid rgba(0, 0, 0, 0.08);
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chat-message.bot-message::before {
  content: '🤖';
  position: absolute;
  left: -12px;
  top: 8px;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  border-radius: 50%;
  padding: 6px;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

/* ===== QUICK REPLIES ===== */
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chat-quick-replies button {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #495057;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.chat-quick-replies button:hover {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
  border-color: transparent;
}

/* ===== CHAT FOOTER ===== */
.chat-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 12px;
  background: white;
  align-items: flex-end;
}

#chat-input {
  flex: 1;
  padding: 12px 16px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  color: #2c3e50;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  resize: none;
  min-height: 20px;
  max-height: 80px;
  font-family: inherit;
}

#chat-input:focus {
  border-color: #f39c12;
  background: white;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

#chat-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #e9ecef;
}

#chat-input::placeholder {
  color: #6c757d;
}

.send-btn {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.send-btn:active:not(:disabled) {
  transform: translateY(0);
}

.send-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #6c757d;
}

/* ===== LOADING INDICATOR ===== */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  color: #6c757d;
  font-size: 13px;
  font-style: italic;
}

.typing-dots {
  display: flex;
  gap: 2px;
}

.typing-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6c757d;
  animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingDot {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  #chatbot-container {
    bottom: 1rem;
    right: 1rem;
  }
  
  .chatbot-toggle {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  
  .chat-modal {
    width: calc(100vw - 2rem);
    max-width: 360px;
    height: 480px;
    right: 0;
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .chat-modal {
    width: calc(100vw - 1rem);
    left: 0.5rem;
    right: 0.5rem;
    height: 460px;
    bottom: 70px;
  }
  
  .chat-header,
  .chat-footer {
    padding: 1rem;
  }
  
  .chat-body {
    padding: 1rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .chatbot-toggle,
  .chat-modal,
  .chat-message,
  .send-btn,
  .chat-quick-replies button {
    transition: none;
  }
  
  .messageSlideIn,
  .typingDot {
    animation: none;
  }
}

/* ===== FOCUS MANAGEMENT ===== */
.chatbot-toggle:focus-visible,
.chat-close:focus-visible,
.send-btn:focus-visible,
.chat-quick-replies button:focus-visible {
  outline: 2px solid #f39c12;
  outline-offset: 2px;
}

#chat-input:focus-visible {
  outline: none; /* Custom focus styles already applied */
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
  .chat-modal {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .chat-body {
    background: #1a1a1a;
  }
  
  .chat-message.bot-message {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .chat-footer {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  #chat-input {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  #chat-input:focus {
    background: #333;
  }
  
  #chat-input::placeholder {
    color: #888;
  }
  
  .chat-quick-replies button {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--medium-gray);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition-smooth);
    z-index: 999;
}

.scroll-to-top:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.scroll-to-top.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: var(--transition-smooth);
}

.modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.modal-content {
    background: var(--medium-gray);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--accent-gold);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--dark-gray);
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.modal-body form {
    display: flex;
    gap: 1rem;
}

.modal-body input {
    flex: 1;
    padding: 12px 16px;
    background: var(--dark-gray);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.modal-body input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .teams-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .match-teams {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-card,
    .valorant-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .store-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .matches-tabs {
        flex-direction: column;
    }
    
    .chat-modal {
        width: calc(100vw - 2rem);
        right: 1rem;
        left: 1rem;
    }
    
    #chatbot-container {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
        min-width: 100px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .teams-filter,
    .matches-tabs {
        gap: 0.5rem;
    }
    
    .filter-btn,
    .tab-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .match-card {
        padding: 1rem;
    }
    
    .product-card,
    .news-card {
        margin-bottom: 1rem;
    }
    
    .founder-image img,
    .valorant-image img {
        width: 80px;
        height: 80px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 1rem;
        left: 1rem;
    }
}

/* Loading Animation (for future use) */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-section {
    background-color: var(--bg-section);
}

.border-gold {
    border-color: var(--accent-gold);
}

.shadow-gold {
    box-shadow: var(--shadow-gold);
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 80px;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .chatbot-container,
    .scroll-to-top,
    .hero-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title {
        color: black;
    }
}
/* Side Wheel Navigation Styles - Add this to your style.css or in a <style> tag in <head> */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

.side-wheel-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.wheel-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 140px;
    background: linear-gradient(180deg, #a08300 0%, #834600 30%, #000000 70%, #9a2900 100%);
    border: none;
    border-radius: 3px 0 0 3px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -4px 0 20px rgba(255, 107, 53, 0.3), 
                -2px 0 10px rgba(255, 107, 53, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.wheel-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.wheel-toggle:hover {
    width: 60px;
    box-shadow: -6px 0 30px rgba(255, 107, 53, 0.5), 
                -3px 0 15px rgba(255, 107, 53, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateX(-2px);
}

.wheel-toggle.active {
    width: 70px;
    background: linear-gradient(180deg, #000000 0%, #f7931e 30%, #6d1d00 70%, #000000 100%);
    box-shadow: -8px 0 40px rgba(255, 215, 0, 0.6), 
                -4px 0 20px rgba(255, 215, 0, 0.4),
                inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: translateX(-4px);
}

.toggle-content {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
}

.toggle-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: white;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.wheel-toggle:hover .toggle-text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.toggle-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 15px;
}

.toggle-icon span {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.wheel-toggle.active .toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.wheel-toggle.active .toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(30px);
}

.wheel-toggle.active .toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.wheel-menu {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wheel-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.wheel-item {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
                rgba(44, 46, 26, 0.95) 0%, 
                rgba(0, 0, 0, 0.95) 100%);
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform-origin: center;
}

.wheel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wheel-item:hover::before {
    opacity: 1;
}

.wheel-item:hover {
    transform: scale(1.15) translateY(-3px);
    background: linear-gradient(135deg, #621a00 0%, #6e3b00 100%);
    border-color: #ffd700;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4),
                0 6px 20px rgba(255, 215, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Perfect semicircle positioning using trigonometry */
.wheel-item:nth-child(1) { /* Teams - 0° */
    top: 125px;
    left: 170px;
    animation-delay: 0.1s;
}

.wheel-item:nth-child(2) { /* Matches - 45° */
    top: 60px;
    left: 120px;
    animation-delay: 0.15s;
}

.wheel-item:nth-child(3) { /* Store - 90° */
    top: 115px;
    left: 60px;
    animation-delay: 0.2s;
}

.wheel-item:nth-child(4) { /* Gallery - 135° */
    top: 170px;
    left: 110px;
    animation-delay: 0.25s;
}


.wheel-icon {
  width: 60px;       /* or however large the space is */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent; /* or whatever background */
  overflow: hidden;
}


.wheel-item:hover .wheel-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}

.wheel-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
    background-color: #000000;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wheel-item:hover .wheel-label {
    opacity: 1;
    transform: translateY(0);
}

.wheel-menu.active .wheel-item {
    animation: wheelItemIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes wheelItemIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-270deg);
        filter: blur(10px);
    }
    70% {
        transform: scale(1.1) rotate(10deg);
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
}

/* Enhanced pulsing animation */
@keyframes pulse {
    0% {
        box-shadow: -4px 0 20px rgba(255, 107, 53, 0.3), 
                    -2px 0 10px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: -6px 0 30px rgba(255, 107, 53, 0.6), 
                    -3px 0 15px rgba(255, 107, 53, 0.4);
    }
    100% {
        box-shadow: -4px 0 20px rgba(255, 107, 53, 0.3), 
                    -2px 0 10px rgba(255, 107, 53, 0.2);
    }
}

.wheel-toggle {
    animation: pulse 4s infinite ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wheel-toggle {
        width: 5px;
        height: 120px;
    }
    
    .wheel-toggle:hover {
        width: 50px;
    }
    
    .wheel-toggle.active {
        width: 60px;
    }
    
    .wheel-menu {
        width: 250px;
        height: 250px;
        right: 70px;
    }
    
    .wheel-item {
        width: 60px;
        height: 60px;
    }
    
    .wheel-icon {
    font-size: 22px;
    background-color: #111;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


    
    .wheel-label {
        font-size: 10px;
    }
    
    .toggle-text {
        font-size: 8px;
    }
    
    /* Adjust mobile positioning */
    .wheel-item:nth-child(1) {
        top: 95px;
        left: 125px;
    }
    
    .wheel-item:nth-child(2) {
        top: 50px;
        left: 88px;
    }
    
    .wheel-item:nth-child(3) {
        top: 95px;
        left: 55px;
    }
    
    .wheel-item:nth-child(4) {
        top: 140px;
        left: 88px;
    }
    
    .wheel-item:nth-child(5) {
        top: 95px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .wheel-menu {
        right: 60px;
        width: 200px;
        height: 200px;
    }
    
    .wheel-item {
        width: 50px;
        height: 50px;
    }
    
    .wheel-icon {
        font-size: 20px;
    }
    
    .wheel-label {
        font-size: 9px;
    }
}
.icon-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;  
}
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;     
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: fadeInUp 0.4s ease;
  font-size: 20px;       
  color: #fa0000;          
  font-family: 'Inter', sans-serif; 
  line-height: 1.6;       
}

@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 26px;
  font-weight: bold;
  color: white;
  background-color: red;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.close-btn:hover {
  background-color: darkred;
}

.jersey-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}
.news-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 2rem;
}

.see-less-btn {
    background: var(--dark-gray, #333);
    color: white;
    border: 2px solid var(--accent-gold, #f39c12);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-less-btn:hover {
    background: var(--accent-gold, #f39c12);
    color: var(--dark-gray, #333);
    transform: translateY(-2px);
}

.see-less-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.live-redirect-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.live-redirect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.live-message {
    text-align: center;
    padding: 20px;
}