:root {
    /* Brand Colors - Light Theme based on Logo */
    --bg-main: #FFFFFF;
    --bg-alt: #F8F9FA;
    --accent-gold: #D4AF37;
    /* Pastel Lilac */
    --accent-gold-light: #FFF6E5;
    --accent-red: #E50914;
    --card-bg: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --border-subtle: #E0E0E0;
    --gold-glow: rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-sans: 'Playfair Display', serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing & Borders */
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body.light-checkout {
    background-color: #FAF8FC;
    background-image:
        radial-gradient(circle at 0% 0%, #ffffff 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, #FFF6E5 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, #FFFDF5 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

/* --- Header --- */
.checkout-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--accent-gold-light);
    box-shadow: 0 0 10px var(--gold-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.brand-slogan {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.header-rifa-info {
    text-align: right;
}

.header-rifa-info h1 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-main);
}

.header-rifa-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-top: 4px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 24px;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
}

.modal-header h2 {
    color: var(--text-main);
    font-family: var(--font-heading);
}

.btn-close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-close-modal:hover {
    color: var(--accent-red);
}

.modal-prize-img {
    margin-top: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.modal-prize-img img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-body h3 {
    color: var(--text-main);
    margin-bottom: 10px;
}

.modal-body p {
    color: var(--text-muted);
}

.modal-body ul {
    margin-top: 10px;
    margin-left: 20px;
    color: var(--text-muted);
}

/* Buttons */
.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-main);
}

.btn-sm {
    padding: 4px 8px;
    font-size: 0.8rem;
}

/* --- Slogan Banner --- */
.slogan-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(181, 149, 47, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}

.slogan-banner p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--accent-gold);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.02);
}

.slogan-banner .quote-icon {
    color: var(--accent-gold);
    opacity: 0.5;
    font-size: 1.2rem;
}

.slogan-banner .heart-icon {
    display: inline-block;
    animation: heartBeat 2s infinite ease-in-out;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.15);
    }

    20% {
        transform: scale(1.05);
    }
}

@media (min-width: 768px) {
    .mobile-break {
        display: none;
    }
}

/* --- Main Layout --- */
.checkout-main {
    display: flex;
    gap: 30px;
    padding: 30px 20px;
    align-items: flex-start;
}

.column-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.column-right {
    width: 380px;
    position: relative;
}

/* --- Prize Hero --- */
.prize-hero {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
}

.prize-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 50%;
    /* Aspect Ratio 2:1 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 2;
}

.badge-pozo {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #D4AF37, #B5952F);
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 2;
    animation: bounceBadge 2s infinite ease-in-out;
    animation: light-pulse 2s infinite;
}

@keyframes light-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* --- Card Sections --- */
.card-section {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.card-section h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-alt);
}

.card-section h2 i {
    color: var(--accent-gold);
}

.step-indicator {
    display: inline-block;
    background: var(--accent-gold-light);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 2px 5px rgba(212, 175, 55, 0.1);
}

.checkout-step {
    animation: fadeIn 0.4s ease forwards;
}

/* --- Stepper --- */
.stepper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stepper-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.stepper-btn:hover {
    background: var(--accent-gold);
    color: #FFFFFF;
}

.stepper-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 30px;
    min-width: 150px;
}

.stepper-input-wrapper input {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    width: 100px;
    outline: none;
}

.stepper-input-wrapper input::-webkit-outer-spin-button,
.stepper-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.stepper-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-info {
    text-align: center;
    margin-bottom: 10px;
}

.price-per-ticket {
    font-size: 1.1rem;
    color: var(--text-main);
}

.gold-text {
    color: var(--accent-gold);
}

.auto-assign-notice {
    text-align: center;
    background: var(--accent-gold-light);
    color: #333333;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

/* --- Forms --- */
.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.form-group input,
.form-group select {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input.error {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.form-error {
    color: var(--accent-red);
    font-size: 0.8rem;
    min-height: 18px;
}

/* --- Payment Methods --- */
.payment-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.payment-tab {
    background: var(--bg-alt);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 15px 10px;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.payment-tab i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.payment-tab:hover {
    background: var(--card-bg);
    border-color: var(--accent-gold);
}

.payment-tab.active {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.payment-tab.active i {
    color: var(--accent-gold);
}

.payment-panels {
    position: relative;
    min-height: 150px;
}

.payment-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.payment-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bank-details-card {
    background: var(--bg-alt);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--border-subtle);
    padding-bottom: 6px;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-row span {
    color: var(--text-muted);
}

.detail-row strong {
    color: var(--text-main);
    user-select: all;
}

/* --- Sticky Sidebar Summary --- */
.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.summary-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-subtle);
    border-top: 5px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.summary-items {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
}

.summary-item.discount {
    color: var(--accent-red);
    font-size: 0.9rem;
}

.summary-item.fees {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.total-values {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.total-usd {
    color: var(--accent-gold);
    font-size: 2.2rem;
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 800;
}

.total-bs {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom Checkbox */
.terms-checkbox {
    margin-bottom: 25px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    flex-shrink: 0;
    transition: var(--transition);
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--accent-gold);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox a {
    color: var(--text-main);
    text-decoration: underline;
    font-weight: 500;
}

.custom-checkbox a:hover {
    color: var(--accent-gold);
}

/* CTA Button */
.btn-cta-giant {
    width: 100%;
    padding: 20px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--accent-gold);
    background: linear-gradient(135deg, #D4AF37 0%, #B5952F 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
    margin-bottom: 25px;
}

.btn-cta-giant:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-cta-giant:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}

.trust-badge i {
    color: #4CAF50;
    /* Green for trust stays */
}

/* Referencia input form-error fixes margin */
.mt-15 {
    margin-top: 15px;
}

/* Notificaciones Toast */
#notificaciones {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.notificacion {
    padding: 15px 20px;
    margin-top: 10px;
    border-radius: 8px;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s forwards;
}

.notificacion.success {
    background-color: #4CAF50;
}

.notificacion.error {
    background-color: var(--accent-red);
}

.notificacion.info {
    background-color: #2196F3;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer */
.checkout-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 30px 0;
    margin-top: 40px;
    background: var(--card-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

.footer-brand img {
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

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

/* Responsive */
@media (max-width: 992px) {
    .checkout-main {
        flex-direction: column;
    }

    .column-right {
        width: 100%;
    }

    .sticky-sidebar {
        position: static;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-rifa-info {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .grid-form {
        grid-template-columns: 1fr;
    }

    .payment-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .stepper-input-wrapper input {
        font-size: 2rem;
        width: 80px;
    }

    .btn-cta-giant {
        font-size: 1.1rem;
    }
}

/* --- Splash Screen Animation --- */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FAF8FC;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sparkles-container,
.bg-sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bg-sparkles-container {
    position: fixed;
    height: 100vh;
    z-index: -1;
}

.sparkle {
    position: absolute;
    color: var(--accent-gold);
    opacity: 0;
    filter: drop-shadow(0 0 5px var(--accent-gold));
    animation: floatAnimation 6s ease-in-out infinite, sparkleFade 3s ease-in-out infinite alternate;
}

/* Different sizes and positions for each sparkle */
.s1 {
    top: 10%;
    left: 15%;
    font-size: 1.5rem;
    animation-delay: 0s, 0.5s;
}

.s2 {
    top: 25%;
    left: 80%;
    font-size: 2rem;
    animation-delay: 1s, 1s;
    animation-duration: 7s, 4s;
}

.s3 {
    top: 75%;
    left: 10%;
    font-size: 1.2rem;
    animation-delay: 2s, 0.2s;
    animation-duration: 5s, 3.5s;
}

.s4 {
    top: 60%;
    left: 85%;
    font-size: 1.8rem;
    animation-delay: 0.5s, 1.5s;
}

.s5 {
    top: 15%;
    left: 50%;
    font-size: 1.4rem;
    animation-delay: 1.5s, 0.8s;
}

.s6 {
    top: 85%;
    left: 55%;
    font-size: 2.2rem;
    animation-delay: 2.5s, 1.2s;
    animation-duration: 8s, 4s;
}

.s7 {
    top: 40%;
    left: 20%;
    font-size: 1.6rem;
    animation-delay: 0.8s, 0.4s;
}

.s8 {
    top: 50%;
    left: 70%;
    font-size: 1.5rem;
    animation-delay: 1.2s, 0.9s;
    animation-duration: 6s, 3.2s;
}

.s9 {
    top: 80%;
    left: 30%;
    font-size: 1.8rem;
    animation-delay: 0.3s, 0.7s;
}

.s10 {
    top: 30%;
    left: 40%;
    font-size: 2.5rem;
    animation-delay: 2.1s, 1.1s;
}

.s11 {
    top: 5%;
    left: 75%;
    font-size: 1.2rem;
    animation-delay: 1.7s, 0.3s;
}

.s12 {
    top: 90%;
    left: 80%;
    font-size: 1.4rem;
    animation-delay: 0.9s, 1.4s;
}

.s13 {
    top: 45%;
    left: 5%;
    font-size: 1.7rem;
    animation-delay: 1.4s, 0.6s;
    animation-duration: 7s, 3.8s;
}

.s14 {
    top: 35%;
    left: 95%;
    font-size: 1.5rem;
    animation-delay: 0.6s, 1.3s;
}

.s15 {
    top: 65%;
    left: 45%;
    font-size: 1.9rem;
    animation-delay: 1.8s, 0.5s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes sparkleFade {
    0% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.splash-logo {
    width: 220px;
    height: auto;
    animation: flashScale 1.5s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.splash-welcome {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    margin: 10px 0 0 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s ease forwards 0.5s;
}

.splash-slogan {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--accent-gold);
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s ease forwards 1s;
}

@keyframes flashScale {
    0% {
        transform: scale(0.95);
        filter: brightness(1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }

    50% {
        transform: scale(1.1);
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(212, 175, 55, 1));
    }

    100% {
        transform: scale(1);
        filter: brightness(1.1) drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
    }
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .splash-welcome {
        font-size: 1.8rem;
    }

    .splash-slogan {
        font-size: 1.1rem;
    }

    .splash-logo {
        width: 180px;
    }
}