/* ========================================
   iGAMING LANDING PAGE - MINIMAL DESIGN
   Gold & Black Theme
   ======================================== */

:root {
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --black: #0a0a0a;
    --black-light: #111111;
    --white: #ffffff;
    --gray: #888888;
    --success: #00D26A;
    --error: #FF4757;
}

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

html {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a00 0%, #0a0a0a 30%, #1a1508 50%, #0a0a0a 70%, #0d0d00 100%);
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Background Effects */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1em;
    animation: snowfall linear infinite;
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 10s; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: 0.5s; }
.snowflake:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 2s; }
.snowflake:nth-child(5) { left: 45%; animation-duration: 9s; animation-delay: 1.5s; }
.snowflake:nth-child(6) { left: 55%; animation-duration: 11s; animation-delay: 0.8s; }
.snowflake:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: 2.5s; }
.snowflake:nth-child(8) { left: 75%; animation-duration: 10s; animation-delay: 1.2s; }
.snowflake:nth-child(9) { left: 85%; animation-duration: 15s; animation-delay: 0.3s; }
.snowflake:nth-child(10) { left: 92%; animation-duration: 11s; animation-delay: 1.8s; }
.snowflake:nth-child(11) { left: 10%; animation-duration: 9s; animation-delay: 3s; }
.snowflake:nth-child(12) { left: 50%; animation-duration: 12s; animation-delay: 2.2s; }

@keyframes snowfall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0.3; }
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    border-radius: 50%;
    animation: float-coin 15s infinite ease-in-out;
}

.coin:nth-child(1) { left: 5%; animation-delay: 0s; }
.coin:nth-child(2) { left: 15%; animation-delay: 2s; width: 15px; height: 15px; }
.coin:nth-child(3) { left: 25%; animation-delay: 4s; }
.coin:nth-child(4) { left: 45%; animation-delay: 1s; }
.coin:nth-child(5) { left: 65%; animation-delay: 3s; }
.coin:nth-child(6) { left: 75%; animation-delay: 5s; width: 18px; height: 18px; }
.coin:nth-child(7) { left: 85%; animation-delay: 2.5s; }
.coin:nth-child(8) { left: 95%; animation-delay: 0.5s; }

@keyframes float-coin {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px); opacity: 0; }
}

/* Landing Page Container */
.landing-page {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    padding-bottom: 80px;
    text-align: center;
}

/* Prize Banner */
.prize-banner {
    position: relative;
    margin-bottom: 15px;
    padding: 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-banner .banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ticket Badge */
.ticket-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black-light);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 0.9em;
    font-weight: 700;
    color: var(--white);
}

.ticket-badge i {
    color: var(--gold);
}

/* Header */
.landing-header {
    margin-bottom: 30px;
}

.year-badge {
    font-size: 5em;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -3px;
    position: relative;
    display: inline-block;
}

.year-white {
    color: var(--white);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.year-gold {
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5));
    animation: gold-shimmer 3s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.8)); }
}

.brand-text {
    font-size: 1.1em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-text .brand {
    color: var(--gold);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Prize Pool */
.prize-pool {
    background: var(--black-light);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.prize-label {
    font-size: 0.7em;
    color: var(--gray);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.prize-amount-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.currency {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--gold);
}

.prize-amount {
    font-size: 2.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-info {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.85em;
    font-weight: 700;
    color: var(--white);
}

.ticket-info i {
    color: var(--gold);
    margin-right: 8px;
}

/* Fixed Bottom Right Ticket Checker */
.ticket-checker {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.ticket-checker-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 25px;
    color: var(--black);
    font-size: 0.8em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.ticket-checker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.ticket-checker-btn i {
    font-size: 0.95em;
}

.ticket-checker-popup {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 280px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
}

.ticket-checker-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85em;
}

.popup-header i {
    margin-right: 6px;
}

.popup-close {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.95em;
    cursor: pointer;
    padding: 3px;
    transition: color 0.2s;
}

.popup-close:hover {
    color: var(--white);
}

.popup-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-content input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.85em;
    font-family: inherit;
    transition: all 0.3s ease;
}

.popup-content input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}

.popup-content input::placeholder {
    color: #555;
}

.popup-content button {
    width: 100%;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 8px;
    color: var(--black);
    font-size: 0.85em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.popup-content button:hover {
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.3);
}

.popup-result {
    padding: 0 12px 12px;
}

.popup-result:empty {
    display: none;
}

/* Result Styles */
.result-box {
    padding: 10px;
    border-radius: 8px;
    animation: slideUp 0.2s ease;
    text-align: center;
}

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

.result-box.success {
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.3);
}

.result-box.error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.result-username {
    font-size: 0.8em;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.result-username i {
    color: var(--success);
    margin-right: 4px;
}

.result-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.55em;
    color: var(--gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 0.95em;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.stat-value.tickets {
    color: var(--gold);
}

.error-message {
    font-size: 0.75em;
    color: var(--error);
}

.error-message i {
    margin-right: 4px;
}

/* Success Message */
.result-box .success-message {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 210, 106, 0.15);
}

.result-box .success-message p {
    font-size: 0.65em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.result-box .success-message strong {
    color: var(--gold);
}

/* Prizes Area */
.prizes-area {
    margin: 0 200px 25px;
}

.prizes-title {
    font-size: 0.9em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.prizes-title i {
    color: var(--gold);
    margin-right: 6px;
}

.main-prizes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.main-prize {
    background: var(--black-light);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    padding: 15px 8px;
    position: relative;
    overflow: visible;
}

.prize-decor-frame {
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    width: calc(100% + 36px);
    height: calc(100% + 36px);
    pointer-events: none;
    z-index: 1;
    object-fit: fill;
}

.gold-prize .prize-decor-frame {
    animation-delay: 0s;
}

.silver-prize .prize-decor-frame {
    animation-delay: -0.5s;
}

.bronze-prize .prize-decor-frame {
    animation-delay: -1s;
}

.main-prize.gold-prize {
    border-color: rgba(255, 215, 0, 0.15);
}

.prize-rank-badge {
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    font-size: 0.7em;
    font-weight: 900;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.silver-prize .prize-rank-badge {
    background: #C0C0C0;
}

.bronze-prize .prize-rank-badge {
    background: #CD7F32;
}

.prize-icon {
    font-size: 1.5em;
    color: var(--gold);
    margin-bottom: 4px;
}

.gold-prize .prize-icon {
    background: linear-gradient(135deg, #F7931A, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.prize-name {
    font-size: 0.6em;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.prize-value {
    font-size: 0.75em;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}

.prize-winner {
    font-size: 0.55em;
    color: var(--gray);
}

/* Cash Prizes */
.cash-prizes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.cash-item {
    background: var(--black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 0.95em;
    text-align: center;
}

.cash-val {
    color: var(--gold);
    font-weight: 700;
}

.cash-count {
    color: var(--gray);
    margin-left: 5px;
}

/* Rules */
.rules-area {
    margin: 0 340px 25px;
}

.rules-header {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--white);
    transition: background 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item summary i {
    font-size: 0.8em;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 12px 20px 15px;
    font-size: 0.85em;
    color: var(--gray);
    line-height: 1.6;
}

.faq-content strong {
    color: var(--gold);
    font-weight: 700;
}

/* Results Area */
.results-area {
    margin: 0 200px 25px;
}

.results-title {
    font-size: 0.9em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.results-title i {
    color: var(--gold);
    margin-right: 6px;
}

.results-content {
    background: var(--black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
}

.results-content p {
    font-size: 0.85em;
    color: var(--gray);
    margin-bottom: 8px;
}

.results-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
.landing-footer {
    font-size: 0.75em;
    color: var(--gray);
    padding-top: 15px;
    margin: 0 200px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.landing-footer i {
    color: var(--gold);
    margin-right: 5px;
}

/* Shake Animation */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .landing-page {
        padding: 30px 50px;
    }

    .prize-banner {
        padding: 0 60px;
    }

    .prizes-area,
    .rules-area,
    .results-area,
    .landing-footer {
        margin-left: 60px;
        margin-right: 60px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .landing-page {
        padding: 15px 10px;
    }

    .landing-header {
        margin-bottom: 20px;
    }

    .year-badge {
        font-size: 3.5em;
    }

    .brand-text {
        font-size: 0.9em;
    }

    .prize-banner {
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .prizes-area,
    .results-area,
    .landing-footer {
        margin-left: 15px;
        margin-right: 15px;
    }

    .rules-area {
        margin-left: 30px;
        margin-right: 30px;
    }

    .rules-header {
        font-size: 1em;
    }

    .faq-item summary {
        padding: 12px 15px;
        font-size: 0.8em;
    }

    .faq-content {
        padding: 10px 15px 12px;
        font-size: 0.75em;
    }

    .results-title {
        font-size: 1em;
    }

    .results-content p {
        font-size: 0.75em;
    }

    .prizes-title {
        font-size: 1em;
        margin-bottom: 12px;
    }

    .prize-decor-frame {
        top: -10px;
        left: -10px;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
    }

    .main-prizes {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .main-prize {
        padding: 12px 6px;
    }

    .prize-icon {
        font-size: 1.5em;
    }

    .prize-name {
        font-size: 0.6em;
    }

    .prize-value {
        font-size: 0.75em;
    }

    .prize-winner {
        font-size: 0.55em;
    }

    .cash-prizes {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        max-width: 280px;
    }

    .cash-item {
        padding: 8px 12px;
        font-size: 0.7em;
    }

    /* Result mobile */
    .result-box {
        padding: 20px 15px;
    }

    .result-username {
        font-size: 1em;
    }

    .stat-value {
        font-size: 1.2em;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .landing-page {
        padding: 10px 5px;
    }

    .landing-header {
        margin-bottom: 15px;
    }

    .year-badge {
        font-size: 2.8em;
    }

    .brand-text {
        font-size: 0.8em;
    }

    .header-line {
        margin-top: 15px;
    }

    .prize-banner {
        padding: 0 5px;
        margin-bottom: 15px;
    }

    .prizes-area,
    .results-area,
    .landing-footer {
        margin-left: 8px;
        margin-right: 8px;
    }

    .rules-area {
        margin-left: 25px;
        margin-right: 25px;
    }

    .rules-header {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .faq-item {
        margin-bottom: 8px;
    }

    .faq-item summary {
        padding: 10px 12px;
        font-size: 0.75em;
    }

    .faq-content {
        padding: 10px 12px 10px;
        font-size: 0.7em;
    }

    .results-title {
        font-size: 0.85em;
    }

    .results-content {
        padding: 10px 12px;
    }

    .results-content p {
        font-size: 0.65em;
    }

    .prizes-title {
        font-size: 0.85em;
    }

    .prize-decor-frame {
        top: -8px;
        left: -8px;
        width: calc(100% + 16px);
        height: calc(100% + 16px);
    }

    .main-prizes {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .main-prize {
        padding: 10px 4px;
    }

    .prize-rank-badge {
        width: 20px;
        height: 20px;
        font-size: 0.65em;
        margin-bottom: 5px;
    }

    .prize-icon {
        font-size: 1.2em;
        margin-bottom: 3px;
    }

    .prize-name {
        font-size: 0.5em;
    }

    .prize-value {
        font-size: 0.65em;
        margin-bottom: 3px;
    }

    .prize-winner {
        font-size: 0.5em;
    }

    .cash-prizes {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        max-width: 240px;
    }

    .cash-item {
        padding: 10px 8px;
        font-size: 0.6em;
    }

    .landing-footer {
        font-size: 0.65em;
        padding-top: 10px;
    }

    /* Result small mobile */
    .result-box {
        padding: 18px 15px;
    }

    .result-username {
        font-size: 0.95em;
    }

    .stat-label {
        font-size: 0.65em;
    }

    .stat-value {
        font-size: 1.1em;
    }

    .result-box .success-message p {
        font-size: 0.85em;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .year-badge {
        font-size: 2.2em;
    }

    .brand-text {
        font-size: 0.7em;
    }

    .prize-decor-frame {
        top: -6px;
        left: -6px;
        width: calc(100% + 12px);
        height: calc(100% + 12px);
    }

    .main-prize {
        padding: 8px 3px;
    }

    .prize-icon {
        font-size: 1em;
    }

    .prize-name {
        font-size: 0.45em;
    }

    .prize-value {
        font-size: 0.55em;
    }

    .cash-prizes {
        max-width: 200px;
    }

    .cash-item {
        padding: 10px 6px;
        font-size: 0.55em;
    }

    /* Result extra small mobile */
    .result-box {
        padding: 15px 12px;
    }

    .result-username {
        font-size: 0.85em;
    }

    .stat-label {
        font-size: 0.6em;
    }

    .stat-value {
        font-size: 1em;
    }

    .result-box .success-message p {
        font-size: 0.8em;
    }
}

/* Ticket Checker Mobile Responsive */
@media (max-width: 480px) {
    .ticket-checker {
        bottom: 25px;
        right: 12px;
    }

    .ticket-checker-btn {
        padding: 8px 14px;
        font-size: 0.75em;
    }

    .ticket-checker-popup {
        width: 260px;
        bottom: 45px;
    }

    .popup-header {
        padding: 8px 12px;
        font-size: 0.8em;
    }

    .popup-content {
        padding: 10px;
        gap: 6px;
    }

    .popup-content input {
        padding: 8px 10px;
        font-size: 0.8em;
    }

    .popup-content button {
        padding: 8px 12px;
        font-size: 0.8em;
    }

    .popup-result {
        padding: 0 10px 10px;
    }
}

@media (max-width: 360px) {
    .rules-area {
        margin-left: 20px;
        margin-right: 20px;
    }

    .ticket-checker {
        bottom: 20px;
        right: 10px;
    }

    .ticket-checker-btn {
        padding: 8px 12px;
        font-size: 0.7em;
    }

    .ticket-checker-popup {
        width: 220px;
        bottom: 42px;
    }

    .popup-header {
        padding: 7px 10px;
        font-size: 0.75em;
    }

    .popup-content {
        padding: 8px;
        gap: 5px;
    }

    .popup-content input {
        padding: 7px 9px;
        font-size: 0.75em;
    }

    .popup-content button {
        padding: 7px 10px;
        font-size: 0.75em;
    }

    .popup-result {
        padding: 0 8px 8px;
    }

    .result-box {
        padding: 8px;
    }

    .result-username {
        font-size: 0.75em;
        margin-bottom: 6px;
    }

    .result-stats {
        gap: 12px;
    }

    .stat-label {
        font-size: 0.5em;
    }

    .stat-value {
        font-size: 0.85em;
    }

    .result-box .success-message {
        margin-top: 5px;
        padding-top: 5px;
    }

    .result-box .success-message p {
        font-size: 0.6em;
    }
}

/* Confetti Animation */
@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-150px) rotate(720deg);
        opacity: 0;
    }
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 10000;
    animation: confetti-fall 2s ease-out forwards;
}

/* Shake Animation */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}
