:root {
    --gold: #a87c4f;
    --dark-gold: #8d6640;
    --light-gold: #c9a57b;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --light-gray: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    background-color: var(--black);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-brand:hover {
    color: var(--light-gold) !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 20px !important;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-signin {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black) !important;
    border-radius: 0;
    padding: 10px 30px !important;
    font-weight: 600;
    margin-left: 15px;
}

.btn-signin:hover {
    background: #2f2d28;
    transform: translateY(-2px);
    color: #fff;
}

/* Hero Section */
.hero {
    background: rgba();
    color: white;
    padding: 14rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home-banner.jpeg');
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 3px;
}

.hero .lead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

/* Category Cards */
.category-card {
    border: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    background: white;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--dark-gold);
}

.category-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin: 30px 0 20px;
    transition: transform 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--black);
    font-size: 1.5rem;
}

/* Contest Cards */
.contest-card {
    border: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.4s;
    height: 100%;
    background: white;
    position: relative;
    overflow: hidden;
}

.contest-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.contest-card:hover::after {
    transform: translateX(0);
}

.contest-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.badge-custom {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.contest-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--black);
    margin-top: 20px;
}

/* Buttons */
.btn-primary-custom {
    background: var(--black);
    border: none;
    padding: 12px 35px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    color: var(--gold);
    font-size: 0.9rem;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    color: var(--black);
}

/* Winner Cards */
.winner-card {
    background: linear-gradient(135deg, var(--black), var(--charcoal));
    border-left: 5px solid var(--gold);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    color: white;
}

.winner-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.winner-card h5 {
    color: var(--gold);
    font-weight: 700;
}

.ticket-number {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 700;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--black), var(--charcoal));
    color: white;
    padding: 60px 0 20px;
}

footer h5 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--gold);
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Countdown */
.countdown {
    background-color: var(--light-gold);
    color: var(--black);
    padding: 8px 15px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Contact */
.contact-card {
    border: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.bg-light-custom {
    background-color: var(--light-gray);
}

.contact-info i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 10px;
}

.social-links a {
    color: var(--gold);
    font-size: 1.8rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--light-gold);
    transform: translateY(-3px);
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 40px 0;
}

/* Auth Pages Specific */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    padding: 40px 20px;
    position: relative;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
}

.auth-card {
    background: white;
    border: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.auth-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 2px solid var(--gold);
}

.auth-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #666;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
}

.text-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--dark-gold);
    text-decoration: underline;
}

/* Profile Page Specific */
.profile-header {
    background: linear-gradient(135deg, var(--black), var(--charcoal));
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--black);
    font-weight: 700;
    margin: 0 auto 20px;
    border: 5px solid rgba(255,255,255,0.2);
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.profile-card {
    border: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.profile-card-header {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 20px;
    border-bottom: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.info-row {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.info-value {
    color: #666;
}

.ticket-item {
    background: var(--light-gray);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s;
}

.ticket-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.contest-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.ticket-badge {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 5px 15px;
    border-radius: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    display: inline-block;
    margin-right: 10px;
}

/* Modal */
.modal-content {
    border-radius: 0;
    border: 2px solid var(--gold);
}

.modal-header {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border-bottom: none;
    border-radius: 0;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-close {
    filter: brightness(0);
}

/* Prize Detail Page */
.prize-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 20px;
}

.prize-details {
    background: white;
    border: 2px solid var(--gold);
    padding: 30px;
    margin-bottom: 30px;
}

.prize-details h3 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.detail-value {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-section {
    background: var(--light-gray);
    padding: 25px;
    border-left: 4px solid var(--gold);
    margin-bottom: 30px;
}

.progress {
    height: 30px;
    border-radius: 0;
    background-color: #e0e0e0;
}

.progress-bar {
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 30px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    text-align: center;
}

.stat-box {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Ticket Selection */
.ticket-selection {
    background: white;
    border: 2px solid var(--gold);
    padding: 30px;
}

.ticket-selection h4 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
}

.ticket-number {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    position: relative;
}

.ticket-number:hover:not(.sold) {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(168, 124, 79, 0.3);
}

.ticket-number.selected {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-color: var(--dark-gold);
    color: white;
    transform: scale(1.05);
}

.ticket-number.sold {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

.ticket-number input[type="checkbox"] {
    display: none;  /* ADD THIS */
}

.ticket-number label {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;          /* ADD THIS */
    align-items: center;    /* ADD THIS */
    justify-content: center; /* ADD THIS */
    cursor: pointer;
    background: transparent;
}

.ticket-number:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-color: var(--dark-gold);
    color: white;
    transform: scale(1.05);
}

.summary-box {
    background: linear-gradient(135deg, var(--black), var(--charcoal));
    color: white;
    padding: 30px;
    border: 3px solid var(--gold);
    position: sticky;
    top: 20px;
}

.summary-box h5 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.summary-item:last-child {
    border-bottom: none;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid var(--gold);
}

.summary-label {
    font-weight: 500;
}

.summary-value {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.2rem;
}

.btn-purchase {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border: none;
    padding: 15px;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    color: white;
    width: 100%;
    font-size: 1.1rem;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 124, 79, 0.4);
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
}

.btn-purchase:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.selected-tickets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    min-height: 60px;
    border: 2px dashed var(--gold);
    align-items: center;
}

.selected-ticket-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gold);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.remove-ticket {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: 3px;
}

.remove-ticket:hover {
    color: #000;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-filter {
    background: white;
    border: 2px solid var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--gold);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-signin {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .auth-logo {
        font-size: 2rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .ticket-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 8px;
    }
    
    .prize-image {
        height: 300px;
    }
}

        .notice-card {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            border: 3px solid #ffc107;
            padding: 25px;
            margin-bottom: 30px;
            position: relative;
            border-radius: 0;
            box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
        }

        .notice-card h4 {
            color: #856404;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .notice-card p {
            color: #664d03;
            line-height: 1.8;
            margin-bottom: 0;
            font-weight: 500;
        }

        .notice-card a {
            color: #856404;
            font-weight: 700;
            text-decoration: underline;
        }

        .notice-card a:hover {
            color: #664d03;
        }

        .btn-close-notice {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #856404;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.3rem;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .btn-close-notice:hover {
            background: #664d03;
            transform: rotate(90deg);
        }

        .notice-18plus {
            display: inline-block;
            background: #dc3545;
            color: white;
            padding: 5px 15px;
            font-weight: 700;
            margin-right: 10px;
            border-radius: 20px;
        }

/*  Payment Status CSS  */

        .failed-container {
            max-width: 700px;
            width: 100%;
        }

        .failed-card {
            background: white;
            border: 3px solid #dc3545;
            border-radius: 0;
            box-shadow: 0 15px 50px rgba(220, 53, 69, 0.4);
            overflow: hidden;
        }

        .failed-header {
            background: linear-gradient(135deg, #dc3545, #c82333);
            padding: 50px 30px;
            text-align: center;
            color: white;
        }

        .failed-icon {
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            animation: shakeIn 0.5s ease-out;
        }

        .failed-icon i {
            font-size: 4rem;
            color: #dc3545;
        }

        .failed-header h1 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            font-size: 2.5rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .failed-header p {
            font-size: 1.1rem;
            opacity: 0.95;
            letter-spacing: 1px;
        }

        .failed-body {
            padding: 40px 30px;
        }

        .error-details {
            background: #fff5f5;
            padding: 25px;
            border-left: 4px solid #dc3545;
            margin-bottom: 30px;
        }

        .error-details h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #dc3545;
            margin-bottom: 15px;
        }

        .error-details p {
            color: #721c24;
            margin-bottom: 0;
            font-weight: 500;
            line-height: 1.6;
        }

        .help-box {
            background: #e7f5ff;
            border-left: 4px solid #0d6efd;
            padding: 20px;
            margin-bottom: 30px;
        }

        .help-box h6 {
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .help-box ul {
            margin-bottom: 0;
            padding-left: 20px;
        }

        .help-box li {
            color: #0c4a6e;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .btn-danger-custom {
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: white;
        }

        .btn-danger-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
            color: white;
        }

        .success-container {
            max-width: 700px;
            width: 100%;
        }

        .success-card {
            background: white;
            border: 3px solid #28a745;
            border-radius: 0;
            box-shadow: 0 15px 50px rgba(40, 167, 69, 0.4);
            overflow: hidden;
        }

        .success-header {
            background: linear-gradient(135deg, #28a745, #20c997);
            padding: 50px 30px;
            text-align: center;
            color: white;
        }

        .success-icon {
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            animation: scaleIn 0.5s ease-out;
        }

        .success-icon i {
            font-size: 4rem;
            color: #28a745;
        }

        .success-header h1 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            font-size: 2.5rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .success-header p {
            font-size: 1.1rem;
            opacity: 0.95;
            letter-spacing: 1px;
        }

        .success-body {
            padding: 40px 30px;
        }

        .transaction-details {
            background: var(--light-gray);
            padding: 25px;
            border-left: 4px solid #28a745;
            margin-bottom: 30px;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #ddd;
        }

        .detail-row:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-weight: 600;
            color: var(--black);
            letter-spacing: 0.5px;
        }

        .detail-value {
            color: #666;
            font-weight: 600;
        }

        .info-box {
            background: #e7f5ff;
            border-left: 4px solid #0d6efd;
            padding: 20px;
            margin-bottom: 30px;
        }

        .info-box i {
            color: #0d6efd;
            margin-right: 10px;
        }

        .info-box p {
            margin: 0;
            color: #0c4a6e;
            font-weight: 500;
        }

        .btn-group-custom {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-custom {
            flex: 1;
            min-width: 200px;
            padding: 15px 30px;
            border: none;
            border-radius: 0;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--black);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(168, 124, 79, 0.4);
            color: var(--black);
        }

        .btn-secondary-custom {
            background: linear-gradient(135deg, var(--black), var(--charcoal));
            color: var(--gold);
        }

        .btn-secondary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            color: var(--light-gold);
        }

        .logo-small {
            text-align: center;
            margin-top: 30px;
            color: white;
        }

        .logo-small h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 2px;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .success-header h1 {
                font-size: 2rem;
            }

            .btn-custom {
                width: 100%;
            }
        }

/* Search box */

.search-box {
    margin-bottom: 20px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--gold);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.search-box input:focus {
    outline: none;
    border-color: var(--dark-gold);
    box-shadow: 0 0 0 0.2rem rgba(168, 124, 79, 0.25);
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
}

.notice-custom {
    margin-top: 1.5%;
    margin-left: 5%;
    margin-right: 5%;
}
