/* Halloween Pirates Theme - 2025 - AllHallows Inspired */

:root {
    --primary-purple: #2d1b4e;
    --secondary-purple: #4a2c6d;
    --dark-purple: #1a0f2e;
    --accent-yellow: #f4d03f;
    --golden-glow: #ffd700;
    --accent-orange: #ff6b35;
    --nav-bg: rgba(93, 43, 78, 0.9);
    --text-light: #ffffff;
    --text-gray: #e8e8e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Fog Animation */
.fog {
    position: fixed;
    width: 200%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--fog-color) 25%,
        var(--fog-color) 75%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.fog1 {
    animation: fog-move 30s linear infinite;
}

.fog2 {
    animation: fog-move 25s linear infinite reverse;
    top: 20%;
}

@keyframes fog-move {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    animation: logo-pulse 2s ease-in-out infinite;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
    }
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger-btn:hover .hamburger-line {
    background: var(--accent-orange);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1002;
    transition: right 0.3s ease-in-out;
    border-left: 3px solid var(--accent-orange);
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.close-mobile-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: var(--accent-yellow);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

.close-mobile-menu:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

.user-email-mobile {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.8rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    margin-top: 2rem;
}

.btn-show-prize-mobile,
.btn-logout-mobile {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-show-prize-mobile {
    background: var(--golden-glow);
    color: var(--dark-purple);
}

.btn-show-prize-mobile:hover {
    background: var(--accent-yellow);
    transform: scale(1.02);
}

.btn-logout-mobile {
    background: var(--accent-orange);
    color: white;
}

.btn-logout-mobile:hover {
    background: #ff8555;
    transform: scale(1.02);
}

.btn-ticket {
    background: var(--accent-yellow);
    color: var(--dark-purple);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    user-select: none;
}

.btn-ticket:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.4);
}

.btn-ticket:active {
    transform: scale(0.98);
}

.main-title {
    font-size: 5rem;
    color: var(--accent-yellow);
    text-shadow: 0 0 40px rgba(244, 208, 63, 0.6);
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.skull-decoration {
    display: none;
}

/* User Info */
.user-info {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26, 31, 46, 0.9);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 2px solid var(--accent-orange);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-show-prize {
    background: var(--golden-glow);
    color: var(--dark-purple);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-show-prize:hover {
    background: var(--accent-yellow);
    transform: scale(1.05);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
}

.btn-logout {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: #ff8555;
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem 2rem;
    min-height: auto;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 0;
}

.hero-content {
    z-index: 10;
}

.hero-date {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

/* Moon - Centered (3x larger) */
.moon {
    position: relative;
    width: 1050px;
    height: 1050px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8e8e8);
    border-radius: 50%;
    box-shadow: 0 0 240px rgba(255, 215, 0, 0.6),
                0 0 450px rgba(244, 208, 63, 0.4);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bats Animation - Outside moon */
.bats {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.bat {
    position: absolute;
    font-size: 2rem;
    animation: fly 8s infinite;
    opacity: 0.8;
}

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

.bat:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.bat:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.bat:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes fly {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-30px, -20px) scale(1.1);
    }
    50% {
        transform: translate(20px, 30px) scale(0.9);
    }
    75% {
        transform: translate(-15px, 40px) scale(1.05);
    }
}

/* Pirate Flag - Inside Moon */
.pirate-ship {
    font-size: 10rem;
    z-index: 2;
    animation: flag-wave 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

@keyframes flag-wave {
    0%, 100% {
        transform: rotate(-5deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.05);
    }
}

/* Wheel Section */
.wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.wheel-pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 50px solid var(--accent-yellow);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
    z-index: 100;
}

.wheel-pointer::after {
    content: '';
    position: absolute;
    top: -55px;
    left: -25px;
    width: 50px;
    height: 15px;
    background: var(--dark-purple);
    border-radius: 10px;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(255, 107, 53, 1),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.btn-spin {
    background: var(--accent-yellow);
    color: var(--dark-purple);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.4);
    user-select: none;
    max-width: 280px;
    margin: 0 auto;
}

.btn-spin:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(244, 208, 63, 0.6);
}

.btn-spin:active:not(:disabled) {
    transform: scale(0.98);
    box-shadow: 0 3px 15px rgba(244, 208, 63, 0.5);
}

.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 2rem;
    animation: icon-spin 2s linear infinite;
}

@keyframes icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.prize-info {
    background: rgba(26, 31, 46, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
    text-align: center;
}

.prize-info p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

#previousPrize {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

/* 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);
}

.modal.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.modal.hiding {
    display: flex !important;
    justify-content: center;
    align-items: center;
    animation: fadeOut 0.3s;
}

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

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

.modal-content {
    background: #000000;
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--accent-orange);
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.6);
    backdrop-filter: blur(10px);
}

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

.close-modal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2.5rem;
    color: var(--accent-yellow);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    line-height: 1;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-orange);
}

.modal-content h2 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-align: center;
}

.donation-options {
    margin: 2rem 0;
}

.donation-options h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.donation-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.donation-method {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    font-size: 2rem;
}

.thank-you {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--gold);
}

.btn-modal-close {
    background: var(--accent-yellow);
    color: var(--dark-purple);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin: 2rem auto 0;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-modal-close:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.4);
}

/* Winner Modal */
.winner-content {
    max-width: 600px;
    text-align: center;
}

.winner-title {
    font-size: 2rem;
    color: var(--gold);
    animation: winner-pulse 1s ease-in-out infinite;
    text-align: center;
    width: 100%;
    padding-right: 0 !important;
    margin: 0 auto;
}

@keyframes winner-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

#confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.prize-display {
    margin: 1.5rem 0;
}

.prize-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.2rem;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    animation: prize-reveal 0.8s ease-out;
}

@keyframes prize-reveal {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.prize-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#prizeTitle {
    color: var(--accent-orange);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

#prizeDescription {
    font-size: 1rem;
    color: var(--text-light);
}

.winner-instructions {
    background: rgba(255, 107, 53, 0.2);
    padding: 1.2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid var(--accent-orange);
}

.winner-instructions p {
    margin: 0.5rem 0;
}

.btn-claim {
    display: none;
}

/* About Section */
.about-section {
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    position: relative;
}

.btn-back {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 2rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: #ff8555;
    transform: translateX(-5px);
}

.about-title {
    font-size: 3rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(244, 208, 63, 0.5);
}

/* Family Photo */
.family-photo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.family-photo-placeholder {
    text-align: center;
}

.family-photo {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--accent-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    display: block;
    margin: 0 auto 1rem;
}

.photo-caption {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: bold;
    font-style: italic;
}

/* About Story */
.about-story {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--accent-orange);
    margin-bottom: 3rem;
}

.about-story h2 {
    color: var(--accent-orange);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Timeline */
.timeline {
    margin-bottom: 3rem;
}

.timeline h2 {
    color: var(--accent-orange);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--accent-orange), transparent);
}

.timeline-year {
    background: var(--accent-orange);
    color: var(--dark-purple);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    height: fit-content;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.timeline-content {
    background: rgba(26, 15, 46, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-yellow);
}

.timeline-content h3 {
    color: var(--accent-yellow);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Mission Section */
.about-mission {
    margin-bottom: 3rem;
}

.about-mission h2 {
    color: var(--accent-orange);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.mission-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--accent-orange);
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border-color: var(--accent-yellow);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Thank You Section */
.about-thanks {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 15, 46, 0.8));
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--accent-yellow);
    text-align: center;
    box-shadow: 0 10px 40px rgba(244, 208, 63, 0.3);
}

.about-thanks h2 {
    color: var(--accent-yellow);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-thanks p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight-text {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.4rem !important;
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

/* Menu Item Button */
.btn-menu-item {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent-yellow);
    border: 2px solid var(--accent-orange);
}

.btn-menu-item:hover {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.02);
}

/* Prizes Section */
.prizes-section {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.prizes-content {
    position: relative;
}

.prizes-title {
    font-size: 3rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(244, 208, 63, 0.5);
}

.prizes-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prize-card {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 3px solid;
    position: relative;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.prize-card-doces {
    border-color: #FF6B35;
}

.prize-card-doces:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.prize-card-chupa {
    border-color: #9370DB;
}

.prize-card-chupa:hover {
    box-shadow: 0 15px 40px rgba(147, 112, 219, 0.5);
}

.prize-card-copo {
    border-color: #32CD32;
}

.prize-card-copo:hover {
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.5);
}

.prize-card-header {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
}

.prize-card-doces .prize-card-header {
    background: rgba(255, 107, 53, 0.15);
}

.prize-card-chupa .prize-card-header {
    background: rgba(147, 112, 219, 0.15);
}

.prize-card-copo .prize-card-header {
    background: rgba(50, 205, 50, 0.15);
}

.prize-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: prize-bounce 2s ease-in-out infinite;
}

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

.prize-card-title {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin: 0;
}

.prize-card-body {
    padding: 2rem;
}

.prize-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.prize-card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.feature-icon {
    font-size: 1.5rem;
}

.prize-card-footer {
    padding: 1rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.prize-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    background: var(--accent-orange);
    color: white;
}

.prize-badge-rare {
    background: linear-gradient(135deg, #32CD32, #FFD700);
    color: var(--dark-purple);
    animation: rare-glow 2s ease-in-out infinite;
}

@keyframes rare-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(50, 205, 50, 0.8);
    }
}

.prizes-info-box {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 15, 46, 0.8));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--accent-yellow);
    text-align: center;
}

.prizes-info-box h3 {
    color: var(--accent-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.prizes-info-box p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.prizes-cta {
    color: var(--accent-orange);
    font-size: 1.3rem !important;
    font-weight: bold;
    animation: text-glow 2s ease-in-out infinite;
}

/* Partners Section */
.partners-section {
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.partners-content {
    position: relative;
}

.partners-title {
    font-size: 3rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(244, 208, 63, 0.5);
}

.partners-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.partners-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.partners-thanks {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 15, 46, 0.8));
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--accent-orange);
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    margin-top: 3rem;
}

.partners-thanks h2 {
    color: var(--accent-yellow);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.partners-thanks p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Partner Section */
.partner-section {
    margin: 3rem 0;
}

.partner-heading {
    text-align: center;
    color: var(--accent-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.4);
}

.partner-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.6), rgba(26, 15, 46, 0.6));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--accent-orange);
    align-items: center;
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    border-color: var(--accent-yellow);
}

.partner-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 15px;
    border: 3px solid var(--accent-yellow);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-name {
    color: var(--accent-yellow);
    font-size: 1.8rem;
    margin: 0;
    font-weight: bold;
}

.partner-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.partner-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.partner-instagram-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.instagram-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive Design - Mobile First Excellence */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 1rem 0;
    }

    .hero-visual {
        order: -1;
        min-height: 400px;
        margin-bottom: 1rem;
    }

    .moon {
        width: 400px;
        height: 400px;
        box-shadow: 0 0 120px rgba(255, 215, 0, 0.6),
                    0 0 225px rgba(244, 208, 63, 0.4);
    }

    .pirate-ship {
        font-size: 8rem;
    }

    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    /* Optimized Header for Mobile */
    .header {
        padding: 0.8rem 1rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .logo-image {
        height: 40px;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    /* Hide desktop buttons on mobile */
    .btn-desktop,
    .user-email-desktop {
        display: none !important;
    }

    /* Show hamburger on mobile */
    .hamburger-btn {
        display: flex;
    }

    .btn-ticket {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    /* Mobile Content Optimization */
    .main-content {
        padding: 5.5rem 1rem 1rem;
        min-height: auto;
    }

    .main-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .wheel-section {
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .wheel-section .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-date {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    /* Bigger Wheel for Mobile - Maximum Size */
    #wheelCanvas {
        width: min(360px, 90vw) !important;
        height: min(360px, 90vw) !important;
    }

    .wheel-container {
        position: relative;
        margin: 1rem auto 0.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .wheel-pointer {
        top: -25px;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 35px solid var(--accent-yellow);
    }

    .wheel-pointer::after {
        top: -40px;
        left: -17px;
        width: 34px;
        height: 12px;
    }

    /* Touch-Friendly Buttons */
    .btn-spin {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-demo-login {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .demo-input {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        padding: 1rem;
    }

    /* Modal Optimization */
    .modal-content {
        padding: 1.2rem;
        width: 95%;
        max-width: 380px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .close-modal {
        top: 0.3rem;
        right: 0.3rem;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }

    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-right: 2.5rem;
    }

    .donation-method {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .winner-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .prize-display {
        margin: 1rem 0;
    }

    .prize-image-container {
        width: 140px;
        height: 140px;
        margin: 0 auto 1rem;
    }

    #prizeTitle {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    #prizeDescription {
        font-size: 0.9rem;
    }

    .winner-instructions {
        padding: 1rem;
        margin: 1rem 0;
    }

    .winner-instructions p {
        font-size: 0.9rem;
        margin: 0.3rem 0;
    }

    .btn-claim {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Show Decorative Elements on Mobile - Compact Version */
    .hero-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .moon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 280px;
        height: 280px;
        margin: 0 auto;
        box-shadow: 0 0 160px rgba(255, 215, 0, 0.6),
                    0 0 300px rgba(244, 208, 63, 0.4);
    }

    .bats {
        display: block;
    }

    .bat {
        font-size: 1.5rem;
    }

    .pirate-ship {
        display: block;
        font-size: 6rem;
    }

    .fog {
        opacity: 0.4;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .footer p {
        margin: 0.3rem 0;
    }

    /* About Section Mobile */
    .about-section {
        padding: 1rem 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .family-photo {
        max-width: 100%;
    }

    .photo-caption {
        font-size: 1rem;
    }

    .about-story {
        padding: 1.5rem;
    }

    .about-story h2 {
        font-size: 1.5rem;
    }

    .about-story p {
        font-size: 1rem;
    }

    .timeline h2 {
        font-size: 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .timeline-item:not(:last-child)::after {
        left: 40px;
    }

    .timeline-year {
        font-size: 1.2rem;
        padding: 0.8rem 0.5rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .about-mission h2 {
        font-size: 1.5rem;
    }

    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .mission-icon {
        font-size: 2.5rem;
    }

    .mission-card h3 {
        font-size: 1.2rem;
    }

    .mission-card p {
        font-size: 0.95rem;
    }

    .about-thanks {
        padding: 2rem 1.5rem;
    }

    .about-thanks h2 {
        font-size: 2rem;
    }

    .about-thanks p {
        font-size: 1rem;
    }

    .highlight-text {
        font-size: 1.2rem !important;
    }

    /* Prizes Section Mobile */
    .prizes-section {
        padding: 1rem 0;
    }

    .prizes-title {
        font-size: 2rem;
    }

    .prizes-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

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

    .prize-card-title {
        font-size: 1.5rem;
    }

    .prize-card-header {
        padding: 1.5rem;
    }

    .prize-card-body {
        padding: 1.5rem;
    }

    .prize-card-description {
        font-size: 0.95rem;
    }

    .feature-item {
        padding: 0.6rem;
    }

    .prizes-info-box {
        padding: 1.5rem;
    }

    .prizes-info-box h3 {
        font-size: 1.4rem;
    }

    .prizes-info-box p {
        font-size: 0.95rem;
    }

    .prizes-cta {
        font-size: 1.1rem !important;
    }

    /* Partner Section Mobile */
    .partners-title {
        font-size: 2rem;
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .partners-section p {
        font-size: 1rem;
    }

    .partner-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }

    .partner-heading {
        font-size: 1.5rem;
    }

    .partner-logo {
        max-width: 150px;
    }

    .partner-name {
        font-size: 1.4rem;
    }

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

    .partner-instagram-link {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        margin: 0 auto;
    }

    .partners-thanks h2 {
        font-size: 2rem;
    }

    .partners-thanks p {
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .main-content {
        padding: 5rem 0.8rem 0.8rem;
    }

    .main-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    #wheelCanvas {
        width: min(340px, 88vw) !important;
        height: min(340px, 88vw) !important;
    }

    .wheel-container {
        margin: 0.8rem auto 0.3rem;
    }

    .btn-spin {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        margin-top: 0.8rem;
    }

    .footer {
        margin-top: 0.8rem;
        padding: 1.2rem 0.8rem;
    }

    .modal-content {
        padding: 1rem;
        max-width: 340px;
        max-height: 85vh;
    }

    .modal-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .winner-title {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .prize-display {
        margin: 0.8rem 0;
    }

    .prize-image-container {
        width: 120px;
        height: 120px;
        margin: 0 auto 0.8rem;
    }

    #prizeTitle {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    #prizeDescription {
        font-size: 0.85rem;
    }

    .winner-instructions {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }

    .winner-instructions p {
        font-size: 0.85rem;
        margin: 0.2rem 0;
    }

    .btn-claim {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-modal-close {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .moon {
        width: 220px;
        height: 220px;
        margin: 0 auto;
        box-shadow: 0 0 100px rgba(255, 215, 0, 0.6),
                    0 0 188px rgba(244, 208, 63, 0.4);
    }

    .pirate-ship {
        font-size: 8rem;
    }

    .hero-visual {
        min-height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* About Section Extra Small */
    .about-title {
        font-size: 1.6rem;
    }

    .about-story {
        padding: 1rem;
    }

    .about-story h2 {
        font-size: 1.3rem;
    }

    .about-story p {
        font-size: 0.9rem;
    }

    .timeline h2 {
        font-size: 1.3rem;
    }

    .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 0.8rem;
    }

    .timeline-item:not(:last-child)::after {
        left: 35px;
    }

    .timeline-year {
        font-size: 1rem;
        padding: 0.6rem 0.3rem;
    }

    .timeline-content {
        padding: 0.8rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .about-mission h2 {
        font-size: 1.3rem;
    }

    .mission-card {
        padding: 1.2rem;
    }

    .mission-icon {
        font-size: 2rem;
    }

    .mission-card h3 {
        font-size: 1.1rem;
    }

    .mission-card p {
        font-size: 0.85rem;
    }

    .about-thanks {
        padding: 1.5rem 1rem;
    }

    .about-thanks h2 {
        font-size: 1.6rem;
    }

    .about-thanks p {
        font-size: 0.9rem;
    }

    .highlight-text {
        font-size: 1rem !important;
    }

    /* Prizes Section Extra Small */
    .prizes-title {
        font-size: 1.6rem;
    }

    .prizes-subtitle {
        font-size: 0.9rem;
    }

    .prize-icon {
        font-size: 2.5rem;
    }

    .prize-card-title {
        font-size: 1.3rem;
    }

    .prize-card-header {
        padding: 1.2rem;
    }

    .prize-card-body {
        padding: 1.2rem;
    }

    .prize-card-description {
        font-size: 0.85rem;
    }

    .feature-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .feature-icon {
        font-size: 1.2rem;
    }

    .prizes-info-box {
        padding: 1.2rem;
    }

    .prizes-info-box h3 {
        font-size: 1.2rem;
    }

    .prizes-info-box p {
        font-size: 0.85rem;
    }

    .prizes-cta {
        font-size: 1rem !important;
    }

    /* Partner Section Extra Small */
    .partners-title {
        font-size: 1.6rem;
    }

    .partners-subtitle {
        font-size: 0.9rem;
    }

    .partners-section p {
        font-size: 0.9rem;
    }

    .partner-card {
        padding: 1.2rem;
    }

    .partner-heading {
        font-size: 1.3rem;
    }

    .partner-logo {
        max-width: 120px;
    }

    .partner-name {
        font-size: 1.2rem;
    }

    .partner-description {
        font-size: 0.85rem;
    }

    .partner-instagram-link {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .instagram-icon {
        font-size: 1.2rem;
    }

    .partners-thanks h2 {
        font-size: 1.6rem;
    }

    .partners-thanks p {
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 900px) and (orientation: landscape) {
    .main-content {
        padding: 6rem 2rem 2rem;
    }

    .hero-visual {
        display: none;
    }

    .wheel-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    #wheelCanvas {
        width: 250px !important;
        height: 250px !important;
    }
}

/* Confetti Animation */
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-orange);
    animation: confetti-fall 3s ease-out forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(500px) rotate(720deg);
        opacity: 0;
    }
}

/* Demo Mode Styles */
.demo-login {
    margin-top: 1rem;
}

.demo-badge {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: glow-pulse 2s ease-in-out infinite;
}

.demo-info {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.demo-input {
    width: 100%;
    max-width: 300px;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 2px solid var(--accent-orange);
    background: rgba(26, 31, 46, 0.5);
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
    outline: none;
    transition: all 0.3s;
}

.demo-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.demo-input::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.btn-demo-login {
    background: var(--accent-yellow);
    color: var(--dark-purple);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.3);
    user-select: none;
}

.btn-demo-login:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(244, 208, 63, 0.5);
}

.btn-demo-login:active {
    transform: scale(0.98);
}

/* Google Sign-In Button */
.btn-google-signin {
    background: white;
    color: #444;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
    font-family: 'Roboto', Arial, sans-serif;
}

.btn-google-signin:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-google-signin:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-google-signin svg {
    flex-shrink: 0;
}

/* QR Code Section */
.qr-code-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 3px solid var(--accent-orange);
    text-align: center;
}

.qr-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    background: #32CD32;
    color: white;
    box-shadow: 0 5px 20px rgba(50, 205, 50, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.qr-status-badge.claimed {
    background: #FF4444;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
    animation: none;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(50, 205, 50, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(50, 205, 50, 0.8);
    }
}

.status-icon {
    font-size: 1.3rem;
}

.status-text {
    font-size: 1rem;
    letter-spacing: 1px;
}

.qr-code-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: inline-block;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.qr-code-container canvas,
.qr-code-container img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.qr-code-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.qr-code-text strong {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-family: monospace;
}
