:root {
    --primary-color: #0d1b2a;
    /* Deep Blue */
    --secondary-color: #1b263b;
    /* Lighter Blue */
    --accent-color: #e0b1cb;
    /* Soft Purple/Pinkish for contrast, maybe change to Gold */
    --gold: #ffd700;
    --text-light: #e0e1dd;
    --text-dark: #333;
    --white: #ffffff;
    --bg-dark: #0d1b2a;
    --card-bg: #1b263b;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    /* Ultra Dynamic Animated Gradient - Gold & Navy */
    background: linear-gradient(-45deg, #0d1b2a, #1b263b, #b38728, #1b263b, #0d1b2a);
    background-size: 400% 400%;
    animation: gradientBG 6s ease infinite;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Decorative background elements */
body::before,
body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

body::before {
    top: -100px;
    right: -100px;
    animation: float1 20s infinite alternate ease-in-out;
}

body::after {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(32, 186, 90, 0.05) 0%, transparent 70%);
    animation: float2 25s infinite alternate ease-in-out;
}

@keyframes float1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-100px, 100px) scale(1.2);
    }
}

@keyframes float2 {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(100px, -100px) rotate(360deg);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
header {
    background-color: rgba(13, 27, 42, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    /* More prominent border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1.premium-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 3s linear infinite;
    text-shadow: 0px 0px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

nav a {
    margin-left: 20px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    /* More padding */
    /* Remove background here to let body background show or use a transparent overlay */
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--gold);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Prizes Section */
.prizes {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.prizes h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.prize-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.prize-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.main-prize {
    grid-column: 1 / -1;
    max-width: 800px;
}

.main-prize img {
    max-height: 300px;
    object-fit: cover;
}

.prize-card img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

.prize-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Purchase Section */
.purchase-section {
    padding: 80px 0;
}

.purchase-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.purchase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ticket-selector h3,
.checkout-form h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.ticket-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.ticket-controls button {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.ticket-controls button:hover {
    background-color: var(--gold);
}

.ticket-controls input {
    width: 60px;
    text-align: center;
    font-size: 1.5rem;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 5px;
    padding: 5px;
}

.total-price {
    font-size: 1.5rem;
    font-weight: bold;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white);
    font-size: 1rem;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #aaa;
    font-size: 0.8rem;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background-color: var(--gold);
    color: var(--primary-color);
    font-weight: 700;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-checkout:hover {
    background-color: #e6c200;
}

.security-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.faq-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

.faq-item h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Company Section */
.company-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.company-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.company-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.company-info,
.contact-actions {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.company-info h3,
.contact-actions h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.company-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.company-info li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.history-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
}

/* Floating Social Buttons */
.float-whatsapp, .float-instagram {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 40px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, filter 0.3s;
}

.float-whatsapp {
    bottom: 40px;
    background-color: #25d366;
}

.float-instagram {
    bottom: 115px; /* Spaced above WhatsApp */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.float-whatsapp:hover, .float-instagram:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.float-whatsapp img, .float-instagram img {
    width: 35px;
    height: 35px;
}

/* Draw Date in Hero */
.draw-date {
    font-size: 1.2rem;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid var(--gold);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--secondary-color);
    font-size: 0.9rem;
    color: #aaa;
}

/* Features Details Section */
.features-details {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.03);
}

.features-details h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.feature-detail-card {
    background: rgba(27, 38, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.feature-detail-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-detail-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Contact Form Styles */
.contact-form-container {
    margin-top: 50px;
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-container h3 {
    color: var(--gold);
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#contact-us-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white);
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

#contact-us-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

/* Charity Section */
.charity-section {
    padding: 60px 0;
    margin: 40px 0;
    background: rgba(255, 107, 107, 0.05);
    border: 1px dashed rgba(255, 107, 107, 0.3);
    border-radius: 20px;
}

.charity-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.charity-icon {
    font-size: 5rem;
    animation: pulseHeart 2s infinite;
}

@keyframes pulseHeart {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

.charity-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.charity-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.charity-badge {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Payment Logos */
.payment-trust-badges {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.payment-trust-badges p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.trust-logo {
    height: 35px;
    width: auto;
    opacity: 0.9;
    transition: transform 0.3s;
}

.trust-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Small Outline Button for Nav */
.btn-outline-small {
    padding: 6px 15px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 5px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-outline-small:hover {
    background: var(--gold);
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .charity-flex {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .purchase-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 2rem;
    }
}
/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.step-card {
    background: rgba(27, 38, 59, 0.4);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--gold);
}

.step-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Tickets Progress Bar */
.tickets-progress-container {
    max-width: 800px;
    margin: 0 auto 40px auto;
    background: rgba(13, 27, 42, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

#tickets-percent {
    color: var(--gold);
}

.progress-bar-bg {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #aa771c, #fcf6ba, #b38728);
    background-size: 200% 100%;
    animation: shine-bar 3s linear infinite;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

@keyframes shine-bar {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.tickets-remaining {
    text-align: center;
    font-size: 1rem;
    opacity: 0.9;
}

.tickets-remaining strong {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Prize Gallery */
.prize-gallery-container {
    grid-column: 1 / -1;
    margin-top: 20px;
}

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

.prize-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.prize-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Mobile Overrides (Appended) */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    header { padding: 10px 0; }
    header h1.premium-title { font-size: 1.4rem; letter-spacing: 1px; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 10px; }
    nav a { margin: 0 5px; font-size: 0.8rem; }
    .hero { padding: 30px 0; }
    .hero-content { flex-direction: column-reverse; text-align: center; gap: 15px; }
    .hero-text h2 { font-size: 1.8rem; line-height: 1.2; }
    .hero-text p { font-size: 0.95rem; }
    .prizes-grid, .steps-grid, .features-detailed-grid, .faq-grid { grid-template-columns: 1fr; gap: 15px; }
    .purchase-grid { grid-template-columns: 1fr; padding: 15px; gap: 20px; }
    .tickets-progress-container { padding: 15px; margin-bottom: 20px; }
    .progress-info { font-size: 0.9rem; }
    .charity-flex { flex-direction: column; text-align: center; gap: 15px; }
    .charity-icon { font-size: 3rem; }
    .charity-content h2 { font-size: 1.4rem; }
    .prize-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .prize-gallery img { height: 120px; }
    /* Confirmation Page */
    .confirmation-container { margin: 20px 10px !important; padding: 15px !important; }
    .confirmation-container h1 { font-size: 1.6rem !important; }
    .file-input-wrapper { padding: 15px !important; }
}

/* Promotion Banner */
.promo-banner {
    max-width: 800px;
    margin: 0 auto 30px auto;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.15));
    border: 2px solid var(--gold);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    animation: pulse-promo 2s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-promo {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
}

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

.promo-text h3 {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.promo-text p {
    font-size: 1.1rem;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.9rem;
    margin-left: 5px;
}

.btn-promo-apply {
    background: var(--gold);
    color: var(--primary-color);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.btn-promo-apply:hover {
    transform: scale(1.1);
    background: #e6c200;
}

/* Mobile adjustment for promo */
@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .btn-promo-apply {
        width: 100%;
    }
}

/* Top Promo Bar */
.top-promo-bar {
    background: linear-gradient(90deg, #aa771c, #fcf6ba, #b38728, #fcf6ba, #aa771c);
    background-size: 200% auto;
    color: var(--primary-color);
    text-align: center;
    padding: 10px 0;
    font-weight: 800;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: shine-bar 3s linear infinite;
}

.top-promo-bar a {
    background: var(--primary-color);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 0.9rem;
    transition: transform 0.2s;
    display: inline-block;
}

.top-promo-bar a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Adjust header sticky position */
header {
    top: 44px; /* Height of the promo bar */
}

/* Admin Access Link Area */
.admin-access-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.75rem;
    opacity: 0.4;
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

.admin-access-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: #000;
}

.slider-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 400px;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* T-Cross Detailed Features Section */
.tcross-detailed-features {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--secondary-color), #0b132b);
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tcross-detailed-features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, #aa771c, #fcf6ba, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.feature-detail-card {
    background: rgba(28, 37, 65, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s, border-color 0.3s;
    text-align: left;
    backdrop-filter: blur(10px);
}

.feature-detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-detail-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-detail-card ul {
    list-style: none;
    padding: 0;
}

.feature-detail-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.feature-detail-card ul li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Mobile adjustment for slider height */
@media (max-width: 768px) {
    .slider-container { height: 250px; }
    .tcross-detailed-features h2 { font-size: 1.8rem; }
}
