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

:root {
    --primary: #048cf8;
    --secondary: #112c6b;
    --accent: #048cf8;
    --dark: #0a1628;
    --light: #eee;
    --gradient: linear-gradient(135deg, #048cf8 0%, #112c6b 100%);
    --apollon-blue: #048cf8;
    --apollon-navy: #112c6b;
    --trading-green: #00ff88;
    --trading-red: #ff4757;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-headshot {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--apollon-blue);
    box-shadow: 0 4px 15px rgba(4, 140, 248, 0.4);
    transition: transform 0.3s ease;
}

.logo-headshot:hover {
    transform: scale(1.1);
}

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

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light);
    transition: all 0.3s;
}

/* Language Switcher Button */
.lang-btn {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 20px;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 0;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 140, 248, 0.3) 0%, rgba(17, 44, 107, 0.5) 100%);
    z-index: 1;
}

/* Football Badges Container */
.football-badges {
    position: absolute;
    top: 100px;
    left: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(4, 140, 248, 0.5);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    border: 3px solid var(--apollon-blue);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: scale(1.05);
}

.badge-item:nth-child(2) {
    animation-delay: 0.5s;
}

.badge-item:nth-child(3) {
    animation-delay: 1s;
}

.badge-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.badge-item p {
    color: var(--apollon-navy);
    font-weight: bold;
    font-size: 0.75rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Audio Toggle Button */
.audio-toggle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(4, 140, 248, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(4, 140, 248, 0.4);
}

.audio-toggle:hover {
    background: rgba(4, 140, 248, 1);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(4, 140, 248, 0.6);
}

.audio-toggle:active {
    transform: scale(0.95);
}

.audio-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.audio-toggle.muted .audio-icon {
    opacity: 0.6;
}

/* Family Photos Container (Right Side) */
.family-photos {
    position: absolute;
    top: 100px;
    right: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(4, 140, 248, 0.5);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    border: 3px solid var(--apollon-blue);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item:nth-child(2) {
    animation-delay: 0.5s;
}

.photo-item:nth-child(3) {
    animation-delay: 1s;
}

.photo-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 8px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.photo-item p {
    color: var(--apollon-navy);
    font-weight: bold;
    font-size: 0.75rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.birthday-badge {
    display: inline-block;
    background: var(--gradient);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    margin: 20px 0;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-style: italic;
}

.ticker {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--accent);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    padding: 15px 0;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-weight: bold;
    color: var(--accent);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Floating Emojis */
.floating-emojis {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.emoji {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.emoji:nth-child(1) { left: 10%; top: 20%; animation-delay: var(--delay); }
.emoji:nth-child(2) { left: 80%; top: 30%; animation-delay: var(--delay); }
.emoji:nth-child(3) { left: 20%; top: 60%; animation-delay: var(--delay); }
.emoji:nth-child(4) { left: 70%; top: 70%; animation-delay: var(--delay); }
.emoji:nth-child(5) { left: 50%; top: 40%; animation-delay: var(--delay); }
.emoji:nth-child(6) { left: 90%; top: 50%; animation-delay: var(--delay); }

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

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light);
    opacity: 0.8;
}

/* Timeline Preview */
.timeline-preview {
    padding: 80px 20px;
}

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

.timeline-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.timeline-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;
}

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

.timeline-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.card-year {
    display: inline-block;
    background: var(--gradient);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.timeline-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-arrow {
    font-size: 2rem;
    color: var(--accent);
    text-align: right;
}

/* Fun Facts */
.fun-facts {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

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

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.fact-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.fact-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: spin 3s ease-in-out infinite;
}

@keyframes spin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.fact-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--accent);
}

.footer p {
    margin: 10px 0;
}

.footer-subtitle {
    color: var(--accent);
    font-style: italic;
}

.footer-small {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .glitch {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .stats-grid,
    .timeline-cards,
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Mobile Football Badges - Hide to prevent overlap */
    .football-badges {
        display: none;
    }

    /* Mobile Family Photos - Hide to prevent overlap */
    .family-photos {
        display: none;
    }

    /* Mobile Video - reduce opacity further */
    .hero-video {
        opacity: 0.5;
    }
    
    /* Mobile Audio Toggle */
    .audio-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .audio-icon {
        font-size: 1.2rem;
    }
}

/* Page Transition */
.page-transition {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Memories Section */
.video-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(4, 140, 248, 0.15) 0%, rgba(17, 44, 107, 0.2) 50%, rgba(255, 0, 100, 0.15) 100%);
    margin: 60px 0;
    border-radius: 20px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #048cf8, #00ff88, #ff4757) 1;
    box-shadow: 0 0 40px rgba(4, 140, 248, 0.4), inset 0 0 60px rgba(4, 140, 248, 0.1);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(4, 140, 248, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-header-banner {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(4, 140, 248, 0.2), rgba(255, 0, 100, 0.2));
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.banner-decoration {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.banner-decoration .star {
    font-size: 2rem;
    animation: twinkle 1.5s ease-in-out infinite;
    display: inline-block;
}

.banner-decoration .star:nth-child(1) { animation-delay: 0s; }
.banner-decoration .star:nth-child(2) { animation-delay: 0.3s; }
.banner-decoration .star:nth-child(3) { animation-delay: 0.6s; }
.banner-decoration .star:nth-child(4) { animation-delay: 0.9s; }
.banner-decoration .star:nth-child(5) { animation-delay: 1.2s; }

@keyframes twinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.7;
    }
}

.video-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #048cf8 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: glow 2s ease-in-out infinite;
}

.video-section .title-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.video-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-style: italic;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(4, 140, 248, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.video-card.featured {
    border: 3px solid;
    border-image: linear-gradient(135deg, #ff4757, #048cf8, #00ff88) 1;
    box-shadow: 0 15px 50px rgba(255, 71, 87, 0.5), 0 0 30px rgba(4, 140, 248, 0.4);
    animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(255, 71, 87, 0.5), 0 0 30px rgba(4, 140, 248, 0.4);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 71, 87, 0.7), 0 0 50px rgba(4, 140, 248, 0.6);
    }
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.6);
    animation: badgeBounce 1s ease-in-out infinite;
}

.warning-badge {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    box-shadow: 0 5px 20px rgba(255, 165, 2, 0.6);
}

.violence-badge {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    box-shadow: 0 5px 20px rgba(192, 57, 43, 0.6);
    font-size: 0.75rem;
}

.danger-badge {
    background: linear-gradient(135deg, #d63031, #ff7675);
    box-shadow: 0 5px 20px rgba(214, 48, 49, 0.6);
}

.ride-badge {
    background: linear-gradient(135deg, #00b894, #00cec9);
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.6);
}

.copyright-badge {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.6);
    font-size: 0.75rem;
}

.plates-badge {
    background: linear-gradient(135deg, #0984e3, #74b9ff);
    box-shadow: 0 5px 20px rgba(9, 132, 227, 0.6);
}

.game-badge {
    background: linear-gradient(135deg, #fdcb6e, #f39c12);
    box-shadow: 0 5px 20px rgba(253, 203, 110, 0.6);
}

.cool-badge {
    background: linear-gradient(135deg, #2d3436, #636e72);
    box-shadow: 0 5px 20px rgba(45, 52, 54, 0.6);
}

.extreme-violence-badge {
    background: linear-gradient(135deg, #8b0000, #dc143c);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.8);
    font-size: 0.7rem;
}

.uni-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.6);
}

.beer-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.6);
}

.disgusting-badge {
    background: linear-gradient(135deg, #6c5b00, #9b870c);
    box-shadow: 0 5px 20px rgba(108, 91, 0, 0.6);
    font-size: 0.7rem;
}

.greek-music-badge {
    background: linear-gradient(135deg, #1e3799, #4a69bd);
    box-shadow: 0 5px 20px rgba(30, 55, 153, 0.6);
}

.drama-badge {
    background: linear-gradient(135deg, #e84393, #fd79a8);
    box-shadow: 0 5px 20px rgba(232, 67, 147, 0.6);
}

.tech-support-badge {
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
    box-shadow: 0 5px 20px rgba(0, 210, 211, 0.6);
    font-size: 0.75rem;
}

.pub-badge {
    background: linear-gradient(135deg, #b33939, #cd6133);
    box-shadow: 0 5px 20px rgba(179, 57, 57, 0.6);
}

.car-badge {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.6);
}

.tiktok-badge {
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    box-shadow: 0 5px 20px rgba(255, 0, 80, 0.6);
}

.party-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 5px 20px rgba(240, 147, 251, 0.6);
}

.dj-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.6);
}

.speech-badge {
    background: linear-gradient(135deg, #fa709a, #fee140);
    box-shadow: 0 5px 20px rgba(250, 112, 154, 0.6);
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(4, 140, 248, 0.4);
    border-color: rgba(4, 140, 248, 0.6);
}

.video-card.featured:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(255, 71, 87, 0.8), 0 0 60px rgba(4, 140, 248, 0.7);
}

.video-card video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(4, 140, 248, 0.2) 0%, rgba(17, 44, 107, 0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.play-icon {
    font-size: 4rem;
    color: rgba(4, 140, 248, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.video-placeholder p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.video-caption {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.video-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #048cf8;
}

.video-caption p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(4, 140, 248, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(4, 140, 248, 0.8));
    }
}

/* Mobile Video Section */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 15px;
        margin: 30px 0;
    }

    .video-section .section-title {
        font-size: 2rem;
        gap: 10px;
    }

    .video-section .title-icon {
        font-size: 1.8rem;
    }

    .video-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-placeholder {
        height: 250px;
    }

    .play-icon {
        font-size: 3rem;
    }

    .video-caption h3 {
        font-size: 1.1rem;
    }

    .video-caption p {
        font-size: 0.9rem;
    }
}
