/* VOB FC - Maroon, White & Gold Design */
:root {
    --maroon: #8B0000;
    --maroon-dark: #660000;
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    color: var(--maroon);
    font-size: 1.5rem;
    margin: 0;
}

.logo-text .tagline {
    color: var(--gold);
    font-size: 0.85rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    color: var(--maroon);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), url('../images/photo7.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--maroon);
    padding-top: 80px;
}

.hero-content {
    padding: 40px 20px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--maroon);
    text-shadow: none;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero .since {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    margin: 15px 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero .motto {
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin: 15px 0;
    color: var(--maroon);
    text-shadow: none;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--maroon);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255,215,0,0.5);
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-button:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,215,0,0.7);
}

/* Sections */
section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    margin: 15px auto 0;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    color: var(--maroon);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(139,0,0,0.3);
}

.stat-box h4 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Values Section */
.values {
    background: var(--off-white);
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid var(--maroon);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(139,0,0,0.15);
    border-top-color: var(--gold);
}

.value-card i {
    font-size: 3rem;
    color: var(--maroon);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--maroon);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--text-light);
}

/* History Section */
.history {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--maroon), var(--gold));
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--maroon);
    background: var(--gold);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    margin: 0 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--maroon);
}

.timeline-content h3 {
    color: var(--maroon);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
}

/* Achievements & Trophies */
.achievements, .trophies {
    background: var(--off-white);
}

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

.achievement-item, .trophy-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid var(--maroon);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.achievement-item:hover, .trophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(139,0,0,0.2);
    border-left-color: var(--gold);
}

.achievement-item i, .trophy-icon i {
    font-size: 3rem;
    color: var(--maroon);
    margin-bottom: 20px;
}

.trophy-icon {
    display: inline-block;
    margin-bottom: 20px;
}

.achievement-item h3, .trophy-card h3 {
    color: var(--maroon);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.achievement-item p, .trophy-card .year {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.trophy-card .description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Player Achievements */
.player-achievements {
    background: var(--white);
}

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

.player-achievement-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139,0,0,0.1);
    transition: all 0.3s;
    border-left: 5px solid var(--maroon);
}

.player-achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(139,0,0,0.2);
    border-left-color: var(--gold);
}

.player-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.player-avatar i {
    font-size: 3.5rem;
    color: var(--maroon);
}

.player-achievement-card h3 {
    color: var(--maroon);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.achievement-item {
    background: linear-gradient(135deg, rgba(139,0,0,0.05), rgba(255,215,0,0.05));
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--gold);
}

.achievement-item:last-child {
    margin-bottom: 0;
}

.achievement-title {
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 5px;
}

.achievement-year {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.achievement-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Coaching Section */
.coaching-achievements {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: var(--white);
}

.coaching-achievements h2 {
    color: var(--white);
}

.coaching-achievements h2::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.coaching-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.coach-profile {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    max-width: 400px;
}

.coach-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-avatar i {
    font-size: 4rem;
    color: var(--maroon);
}

.coach-profile h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.coach-title {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.coaching-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.coaching-achievement-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s;
}

.coaching-achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.achievement-icon i {
    font-size: 1.8rem;
    color: var(--maroon);
}

.coaching-achievement-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.coaching-achievement-card .year {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.coaching-achievement-card .desc {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Leadership/Coaches Corner */
.leadership {
    background: var(--off-white);
}

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

.leader-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--maroon);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(139,0,0,0.15);
    border-top-color: var(--gold);
}

.leader-card i {
    font-size: 3.5rem;
    color: var(--maroon);
    margin-bottom: 20px;
}

.leader-card h3 {
    color: var(--maroon);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.leader-card p {
    color: var(--gold);
    font-weight: 600;
}

/* Gallery */
.gallery {
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(139,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.8), rgba(255,215,0,0.6));
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: var(--white);
}

.contact h2 {
    color: var(--white);
}

.contact h2::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.info-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.info-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-item p {
    color: rgba(255,255,255,0.9);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--maroon);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--maroon-dark);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

.footer p {
    margin: 5px 0;
}

.footer-tagline {
    color: var(--gold);
    font-weight: 600;
}

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

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

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

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(139,0,0,0.1);
    }
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), url('../images/photo7.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 70px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        flex: 0 0 60px;
        font-size: 1rem;
        padding: 10px 5px;
    }

    .timeline-content {
        margin: 0;
    }

    .player-achievement-card {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 180px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .since {
        font-size: 1.4rem;
    }

    .hero .motto {
        font-size: 1rem;
    }

    .player-achievement-card {
        max-height: none;
        overflow-y: visible;
    }
}

/* Enhanced Logo Effects - Removed for clean look */

/* Hero logo effects removed for clean look */

/* Glossy Card Effects */
.value-card, .trophy-card, .player-achievement-card, .leader-card {
    position: relative;
    overflow: hidden;
}

.value-card::before, .trophy-card::before, .player-achievement-card::before, .leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.value-card:hover::before, .trophy-card:hover::before, .player-achievement-card:hover::before, .leader-card:hover::before {
    left: 100%;
}

/* Enhanced Button Glossy Effect */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: rotate(45deg);
    animation: buttonShine 3s ease-in-out infinite;
}

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

/* Enhanced Stat Boxes */
.stat-box {
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
    animation: statGlow 2s ease-in-out infinite;
}

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

/* Gallery Image Glossy Effect */
.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s;
}

.gallery-item:hover::after {
    left: 150%;
}

/* Section Headers with Glossy Effect */
section h2 {
    position: relative;
    text-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

section h2::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(45deg, transparent, rgba(255,215,0,0.2), transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Navigation Glossy Effect */
.navbar {
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: navGlow 2s ease-in-out infinite;
}

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

/* Timeline Glossy Effects */
.timeline-year {
    position: relative;
    overflow: hidden;
}

.timeline-year::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: timelineShine 3s ease-in-out infinite;
}

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

/* Contact Form Glossy Inputs */
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Logo Shine Animation for Glossy Effect */
@keyframes logoShine {
    0% {
        filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9)) 
                drop-shadow(0 0 60px rgba(255, 215, 0, 1))
                drop-shadow(0 0 80px rgba(255, 215, 0, 0.8))
                drop-shadow(0 10px 40px rgba(255, 255, 255, 0.5))
                drop-shadow(0 -5px 30px rgba(255, 215, 0, 0.6))
                brightness(1);
    }
    50% {
        filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9)) 
                drop-shadow(0 0 80px rgba(255, 215, 0, 1))
                drop-shadow(0 0 100px rgba(255, 215, 0, 1))
                drop-shadow(0 10px 50px rgba(255, 255, 255, 0.7))
                drop-shadow(0 -5px 40px rgba(255, 215, 0, 0.8))
                brightness(1.2);
    }
    100% {
        filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9)) 
                drop-shadow(0 0 60px rgba(255, 215, 0, 1))
                drop-shadow(0 0 80px rgba(255, 215, 0, 0.8))
                drop-shadow(0 10px 40px rgba(255, 255, 255, 0.5))
                drop-shadow(0 -5px 30px rgba(255, 215, 0, 0.6))
                brightness(1);
    }
}
