/* Exact Style Clone of tklottery.in for Om Agency */

:root {
    --tg-theme-primary: #741ff5;
    --tg-theme-secondary: #e348ff;
    --tg-gradient-1: #2600fc;
    --tg-gradient-2: #ff00ea;
    --bg-dark: #0F051D;
    
    --text-white: #ffffff;
    --text-lavender: #c4b8d4;
    --text-dark: #333333;
    
    --transition-smooth: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-lavender);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 700;
}

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

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

/* 1. Scrolling Announcement Bar */
.lottery-marquee {
    width: 100%;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollText 25s linear infinite;
}

.marquee-track span {
    white-space: nowrap;
    font-size: 16px;
    color: #555;
    margin-right: 60px;
    font-weight: 500;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 2. Sticky Transparent Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 5, 29, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.main-logo-img {
    max-width: 55px;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--tg-theme-primary);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navigation a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-lavender);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.navigation a:hover, .navigation a.active {
    color: var(--tg-theme-secondary);
}

.menu-toggler {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.border-btn {
    border: 2px solid var(--tg-theme-primary);
    color: var(--text-white);
    background: transparent;
}

.border-btn:hover {
    background: var(--tg-theme-primary);
    box-shadow: 0 0 15px rgba(116, 31, 245, 0.4);
}

.primary-btn {
    background: linear-gradient(135deg, var(--tg-theme-primary), var(--tg-theme-secondary));
    color: var(--text-white);
}

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

.whatsapp-btn {
    background: #25D366;
    color: var(--text-white);
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* 3. Floating Gradient Backgrounds */
.gradient-position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.grad-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.grad-left {
    background: radial-gradient(circle, var(--tg-gradient-1), transparent);
    left: -10%;
    top: 5%;
}

.grad-right {
    background: radial-gradient(circle, var(--tg-gradient-2), transparent);
    right: -10%;
    bottom: 5%;
}

/* 4. Hero Section */
.banner-area {
    padding: 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.banner__content .title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
}

.subtitle-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-lavender);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.banner__images {
    position: relative;
    display: flex;
    justify-content: center;
}

.banner-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 3px solid rgba(116, 31, 245, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Floating shape decorations */
.shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
}

.shape-circle {
    width: 30px;
    height: 30px;
    border: 3px solid var(--tg-theme-secondary);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    animation: floatingShape 4s ease-in-out infinite alternate;
}

.shape-x {
    font-size: 40px;
    color: var(--tg-theme-primary);
    bottom: -20px;
    right: -10px;
    font-family: Arial, sans-serif;
    animation: floatingShape 4s ease-in-out infinite alternate-reverse;
}

@keyframes floatingShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(15deg); }
}

/* 5. Booking Form & Interactive Number Grid */
.booking-section-wrap {
    padding: 60px 0;
}

.form-container {
    background-color: #F4F4F4;
    padding: 30px;
    max-width: 1100px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    color: var(--text-dark);
}

.form-container h2 {
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 1.8rem;
}

.flex-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    width: 33.33%;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    border-radius: 20px 0px 20px 0px;
    padding: 15px 20px;
    outline: none;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--tg-theme-primary);
}

#selected-boxes {
    cursor: pointer;
    background-color: #e9e9e9;
}

.submit-btn {
    background-color: var(--tg-theme-primary);
    width: 220px;
    outline: none;
    border: none;
    color: var(--text-white);
    border-radius: 20px 0px 20px 0px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--tg-theme-secondary);
    box-shadow: 0 4px 12px rgba(116, 31, 245, 0.3);
}

/* Number grid container slide down state */
.lottery-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, margin 0.6s ease;
}

.lottery-container.open {
    margin-top: 25px;
    max-height: 900px;
    opacity: 1;
}

.grid-legend-box {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-lavender);
}

.legend-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}

.legend-color.avail {
    background-color: lightblue;
    border: 1px solid #ccc;
}

.legend-color.sel {
    background-color: yellow;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 8px;
    padding: 20px;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

.box {
    background-color: lightblue;
    border: 1px solid #ccc;
    color: var(--text-dark);
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    user-select: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.box:hover {
    transform: scale(1.1);
    background-color: #a4d2e8;
}

.box.selected {
    background-color: yellow;
    color: var(--text-dark);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* 6. Text & Image Promos */
.promo-section, .why-choose-section, .beyond-tickets-section {
    padding: 80px 0;
}

.promo-grid, .why-grid, .beyond-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.promo-content h1, .why-content h2, .beyond-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.3;
}

.promo-content p, .why-content p, .beyond-content p {
    margin-bottom: 15px;
}

.promo-img-asset, .why-img-asset, .beyond-img-asset, .bumper-img-asset {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(116, 31, 245, 0.2);
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
    margin: 0 auto;
    display: block;
}

.why-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.why-list-items li {
    display: flex;
    gap: 12px;
}

.list-bullet-icon {
    color: var(--tg-theme-secondary);
    font-size: 16px;
    margin-top: 3px;
}

.list-text {
    font-size: 15px;
}

.contact-btn {
    background: linear-gradient(135deg, var(--tg-theme-primary), var(--tg-theme-secondary));
    color: var(--text-white);
    margin-top: 20px;
}

/* 7. Weekly Draws Schedule Table */
.schedule-section {
    padding: 80px 0;
}

.section-title-wrap {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.section-title-wrap h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.lottery-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
    color: var(--text-dark);
}

.lottery-table th, .lottery-table td {
    border: 1px solid #ddd;
    padding: 16px;
    text-align: left;
    vertical-align: top;
}

.lottery-table th {
    background: #f1f1f1;
    font-weight: bold;
    color: var(--text-dark);
    font-size: 16px;
}

.lottery-table tr:nth-child(even) {
    background: #fafafa;
}

.draw-name {
    font-weight: bold;
    color: var(--tg-theme-primary);
}

.draw-bottom-text {
    font-size: 15px;
    text-align: center;
}

/* 8. Bumper Section */
.bumpers-section {
    padding: 80px 0;
}

.bumpers-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.bumpers-content h4 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.bumpers-content p {
    margin-bottom: 16px;
}

.bumper-bottom-note {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

/* 9. About Section */
.about-section {
    padding: 80px 0;
}

.about-main-title {
    text-align: center;
    margin-bottom: 40px;
}

.about-main-title h2 {
    font-size: 2.2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.mission-box {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 8px;
}

.mission-icon {
    font-size: 32px;
    color: var(--tg-theme-secondary);
}

.mission-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.about-bullets h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.about-elements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-element-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.about-element-card:hover {
    border-color: var(--tg-theme-primary);
    transform: translateY(-5px);
}

.element-card-img {
    font-size: 28px;
    color: var(--tg-theme-primary);
    margin-bottom: 12px;
}

.about-element-card p {
    font-size: 14px;
    font-weight: 500;
}

/* 10. Roadmap / How to Order */
.roadmap-section {
    padding: 80px 0;
}

.roadmap-title h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.roadmap-title .desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.roadmap-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition-smooth);
}

.roadmap-card:hover {
    border-color: var(--tg-theme-secondary);
    background: rgba(227, 72, 255, 0.04);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(227, 72, 255, 0.15);
}

.roadmap-card:hover .step-lbl {
    animation: pulseStep 1.2s infinite alternate;
}

@keyframes pulseStep {
    0% { transform: scale(1); text-shadow: 0 0 5px rgba(227, 72, 255, 0.4); }
    100% { transform: scale(1.08); text-shadow: 0 0 15px rgba(227, 72, 255, 0.8); }
}

.step-lbl {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--tg-theme-secondary);
    display: block;
    margin-bottom: 12px;
}

.roadmap-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.roadmap-card p {
    font-size: 14px;
}

.roadmap-bottom-note {
    font-size: 15px;
    margin-top: 30px;
}

/* 11. FAQ Accordions */
.faq-section {
    padding: 80px 0;
}

.faq-title h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item.active {
    border-color: var(--tg-theme-primary);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-white);
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    font-size: 14px;
    color: var(--tg-theme-secondary);
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.accordion-body p {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-lavender);
}

/* 12. Footer Area */
.footer-area {
    background: #090312;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-lavender);
}

.footer__top-wrapper {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 40px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 55px;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--tg-theme-primary);
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.footer-description-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__info-social {
    display: flex;
    gap: 12px;
}

.footer__info-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.footer__info-social a:hover {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
    transform: translateY(-3px);
}

.fw-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.fw-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--tg-theme-primary);
}

.contact-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h4 {
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-item p {
    font-size: 13.5px;
}

.footer-quick-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-quick-links a {
    font-size: 14px;
    color: var(--text-lavender);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-quick-links a:hover {
    color: var(--tg-theme-secondary);
    padding-left: 6px;
}

/* Copyright Wrapper */
.copyright__wrapper-default {
    background: #05020a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 24px 0;
}

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

.copy-left p {
    font-size: 14px;
}

.bottom-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-links a {
    font-size: 13px;
    color: var(--text-lavender);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.bottom-links a:hover {
    color: var(--tg-theme-secondary);
}

.backTop a {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: var(--tg-theme-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.backTop a:hover {
    background: var(--tg-theme-secondary);
}

/* Responsive Rules */
/* Responsive Rules - 100% Mobile Friendly */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(10, 1fr);
        gap: 8px;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .promo-grid, .why-grid, .beyond-grid, .bumpers-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .why-list-items {
        align-items: flex-start;
        text-align: left;
    }
    
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sticky-header {
        padding: 12px 0;
    }

    .menu-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(116, 31, 245, 0.15);
        border: 1px solid rgba(227, 72, 255, 0.3);
        border-radius: 8px;
        color: #ffffff;
        font-size: 18px;
        cursor: pointer;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(11, 2, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(227, 72, 255, 0.2);
        padding: 24px 20px;
        gap: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    }
    
    .nav-menu.open, .nav-menu.active {
        display: flex;
    }
    
    .navigation {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .navigation a {
        padding: 12px;
        font-size: 16px;
        display: block;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.03);
    }
    
    .header-action {
        width: 100%;
    }
    
    .header-action .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .flex-group {
        flex-direction: column;
        gap: 14px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .grid-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 6px;
        padding: 12px;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-wrap {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lottery-table {
        min-width: 550px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .banner__content .title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .subtitle-text {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .grid-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
        padding: 10px;
    }
    
    .box {
        font-size: 13px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .form-container {
        padding: 20px 15px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 16px;
    }
}

.about-grid-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.hero-main-img {
    animation: floatAnimation 6s ease-in-out infinite;
}

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

/* Scroll Reveal Animations - Visible by default for instant rendering */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Stagger delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

.box.sold-out {
    background-color: #3a1c22 !important;
    color: #ff3355 !important;
    border-color: rgba(255, 51, 85, 0.4) !important;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.6;
}

.box.sold-out:hover {
    transform: none !important;
    background-color: #3a1c22 !important;
}

/* --- Premium Aesthetics Upgrades --- */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e348ff 50%, #741ff5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(116, 31, 245, 0.15);
    border: 1px solid rgba(227, 72, 255, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #e348ff;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 10px #00e676;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.shimmer-btn:hover::after {
    opacity: 1;
    left: 100%;
}

.hero-logo-frame {
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, rgba(116, 31, 245, 0.4), rgba(227, 72, 255, 0.4));
    box-shadow: 0 0 40px rgba(116, 31, 245, 0.45);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-glow-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--tg-theme-primary), var(--tg-theme-secondary));
}

.icon-gold {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-right: 6px;
}

.day-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(116, 31, 245, 0.15);
    border: 1px solid rgba(116, 31, 245, 0.4);
    color: #e348ff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

/* Grid Box Upgrades */
.grid-container {
    background: rgba(15, 5, 29, 0.85) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(227, 72, 255, 0.25) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.box {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 8px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.box:hover {
    background: rgba(116, 31, 245, 0.45) !important;
    border-color: var(--tg-theme-secondary) !important;
    transform: scale(1.12) translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(227, 72, 255, 0.4) !important;
}

.box.selected {
    background: linear-gradient(135deg, #ffd700, #ff9900) !important;
    color: #000000 !important;
    border-color: #ffe600 !important;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8) !important;
    transform: scale(1.1) !important;
}

@keyframes pulseGlow {
    0% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(1.15); }
    100% { opacity: 0.4; transform: scale(1); }
}

.grad-circle {
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

/* Footer Admin Login Link Button */
.footer-admin-link {
    color: #e348ff !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(116, 31, 245, 0.15);
    border: 1px solid rgba(227, 72, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.footer-admin-link:hover {
    background: linear-gradient(135deg, var(--tg-theme-primary), var(--tg-theme-secondary));
    color: #ffffff !important;
    border-color: var(--tg-theme-secondary);
    box-shadow: 0 0 12px rgba(227, 72, 255, 0.4);
    transform: translateY(-2px);
}
