:root {
    --primary-purple: #8B5CF6;
    --secondary-purple: #A855F7;
    --dark-purple: #7C3AED;
    --light-purple: #C4B5FD;
    --accent-yellow: #F59E0B;
    --accent-teal: #14B8A6;
    --accent-blue: #3B82F6;
    --dark-bg: #1E1B4B;
    --darker-bg: #15123A;
    --card-bg: #2D1B69;
    --text-light: #F3F4F6;
    --text-muted: #9CA3AF;
    --border-color: #4C1D95;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Header */
.header {
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Navigation */
.nav {
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link.live:before {
    content: '🔴';
    margin-right: 0.2rem;
}

.nav-link:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--light-purple);
}

.nav-link.active {
    background: var(--primary-purple);
    color: white;
}

/* Bouton hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn:hover .hamburger-line {
    background: var(--light-purple);
}

/* Animation du hamburger */
.hamburger-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .card-header {
        display: none;
    }
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-purple);
    margin-left: 0.5rem;
}

.card-body {
    padding: 1rem 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: rgba(139, 92, 246, 0.1);
    color: var(--light-purple);
    border: 1px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
}

/* Tables */
.table-container {
    overflow-x: auto;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: rgba(139, 92, 246, 0.1);
    font-weight: 600;
    color: var(--light-purple);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.table tr:hover {
    background: rgba(139, 92, 246, 0.05);
}

/* Player cards */
.player-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.player-card:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-purple);
}

.player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.player-info {
    flex: 1;
    text-decoration: none;
}

.player-name {
    font-weight: 600;
    color: var(--light-purple);
    margin-bottom: 0.25rem;
}

.player-stats {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Live stream box */
.live-box {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    animation: pulse 2s infinite;
}

.live-box .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.live-box .card-title {
    color: white;
}

.live-box .card-body {
    text-align: center;
    padding: 1.5rem;
}

.live-icon {
    color: white;
    animation: blink 1s infinite;
}

.live-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.live-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.live-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.live-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Concept box - Offline state */
.concept-box {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(168, 85, 247, 0.9));
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.concept-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%238B5CF6;stop-opacity:0.8"/><stop offset="100%" style="stop-color:%23A855F7;stop-opacity:0.6"/></linearGradient></defs><rect width="400" height="300" fill="url(%23bg)"/><circle cx="50" cy="50" r="3" fill="white" opacity="0.3"/><circle cx="350" cy="80" r="2" fill="white" opacity="0.4"/><circle cx="80" cy="250" r="2.5" fill="white" opacity="0.3"/><circle cx="320" cy="200" r="1.5" fill="white" opacity="0.5"/><circle cx="150" cy="100" r="1" fill="white" opacity="0.4"/></svg>');
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.concept-box .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
}

.concept-box .card-title {
    color: white;
}

.concept-box .card-body {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.concept-icon {
    color: white;
    animation: float 3s ease-in-out infinite;
}

.concept-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.concept-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.concept-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.concept-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.concept-feature-icon {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.concept-feature-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.concept-feature-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Floating elements */
.floating-note {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.floating-note:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-note:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-note:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-note:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 0.5s;
}

.floating-note:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content,
    .nav-content,
    .main-content {
        padding: 0 1rem;
    }

    .logo {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .table-container {
        font-size: 0.85rem;
    }

    .concept-features {
        grid-template-columns: 1fr;
    }

    .concept-title {
        font-size: 1.3rem;
    }

    .concept-description {
        font-size: 1rem;
    }
}

/* Styles responsives pour le menu hamburger */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
    
    .nav-content {
        justify-content: space-between;
        position: relative;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(30, 27, 75, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.nav-open {
        max-height: 400px;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        text-align: left;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: rgba(139, 92, 246, 0.15);
    }
    
    .nav-link.active {
        background: var(--primary-purple);
        color: white;
    }
}

/* Mobile spécifique */
@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }
    
    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav-links {
        padding: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-purple);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Live stream animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* Bouton retour en haut */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Animation d'apparition */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-to-top.show {
    animation: slideInUp 0.3s ease-out;
}

/* Responsive pour le bouton */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Classes utilitaires pour les grilles responsives */
.grid-2-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

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

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

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

/* Responsive pour les grilles */
@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grid-auto-fit,
    .grid-auto-fit-small,
    .grid-auto-fit-large {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .grid-auto-fit,
    .grid-auto-fit-small,
    .grid-auto-fit-large {
        gap: 0.75rem;
    }
} 

/* Styles pour le carrousel des lots */
.prizes-carousel {
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.prizes-carousel::-webkit-scrollbar {
    height: 8px;
}

.prizes-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.prizes-carousel::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.prizes-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

.prize-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prize-card::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 ease;
}

.prize-card:hover::before {
    left: 100%;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.prize-card h4 {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Bouton Steam stylisé */
.prize-card .btn-primary {
    background: linear-gradient(135deg, #171a21 0%, #2a475e 50%, #1b2838 100%);
    border: 2px solid #66c0f4;
    box-shadow: 0 4px 15px rgba(102, 192, 244, 0.3);
    transition: all 0.3s ease;
}

.prize-card .btn-primary:hover {
    background: linear-gradient(135deg, #2a475e 0%, #1b2838 50%, #171a21 100%);
    border-color: #66c0f4;
    box-shadow: 0 6px 20px rgba(102, 192, 244, 0.5);
    transform: translateY(-2px);
}

.prize-card .btn-primary:active {
    transform: translateY(0);
}

/* Animation pour les cartes de lots */
@keyframes prizeCardAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.prize-card {
    animation: prizeCardAppear 0.6s ease forwards;
}

.prize-card:nth-child(1) { animation-delay: 0.1s; }
.prize-card:nth-child(2) { animation-delay: 0.2s; }
.prize-card:nth-child(3) { animation-delay: 0.3s; }
.prize-card:nth-child(4) { animation-delay: 0.4s; }
.prize-card:nth-child(5) { animation-delay: 0.5s; }

/* Responsive pour le carrousel */
@media (max-width: 768px) {
    .prizes-carousel {
        gap: 0.5rem;
    }
    
    .prize-card {
        min-width: 250px;
        padding: 1rem;
    }
    
    .prize-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .prize-card {
        min-width: 200px;
        padding: 0.75rem;
    }
    
    .prize-card .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: var(--card-bg);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

.modal-title {
    margin: 0;
    color: var(--text-light);
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 1.5rem;
}

.modal-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.modal-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 1rem 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        bottom: -100%;
    }
    to {
        bottom: 0;
    }
}

.modal.show .modal-content {
    animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header {
        padding: 0.75rem;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
} 

 

