@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #000000;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}
.gradient-text {
    background: linear-gradient(180deg, #c2389c 20%, #4064aa 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-2 {
    background: linear-gradient(180deg, #ffea00 20%, #ffa801 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    margin: 0 auto !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bebas Neue", sans-serif;
}

p,
span,
input,
label,
a {
    font-family: "Poppins", sans-serif;
}

.font-bebas-neue {
    font-family: "Bebas Neue", sans-serif;
}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

.font-montserrat {
    font-family: "Montserrat", sans-serif;
}

.container {
    max-width: 1140px !important;
    padding: 0 20px !important;
}

.site-btn-design {
    position: relative;
    background: linear-gradient(90deg, #902e8f, #c41c93);
    color: white;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1;
    overflow: visible;
    box-shadow: 0 0 40px rgba(255, 144, 231, 0.6),
        inset 0 0 6px rgba(255, 144, 231, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-btn-design::before,
.site-btn-design::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgb(175 0 137 / 90%), transparent 80%);
    filter: blur(35px);
    z-index: -1;
}

.site-btn-design::before {
    top: -25px;
}

.site-btn-design::after {
    bottom: -25px;
}

.btn-top-design {
    background-image: url('../images/Btn-line.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 90%;
    height: 5px;
    position: absolute;
    z-index: 99;
    display: flex;
    justify-content: center;
    right: 0;
    left: 0;
    top: -20px;
    margin: 0 auto;
}

.btn-top-design-2 {
    background-image: url('../images/button-top-design.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 90%;
    height: 5px;
    position: absolute;
    z-index: 99;
    display: flex;
    justify-content: center;
    right: 0;
    left: 0;
    bottom: 29px;
    margin: 0 auto;
}

.gold-button.big .btn-top-design-2 {
    bottom: 36px;
}

a.gold-button.second .btn-top-design-2 {
    height: 8px;
    bottom: 31px;

}

.btn-bottom-design {
    background-image: url('../images/Btn-line.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 90%;
    height: 5px;
    position: absolute;
    z-index: 99;
    display: flex;
    justify-content: center;
    right: 0;
    bottom: -20px;
    left: 0;
    margin: 0 auto;
}

.site-btn-design:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 0 50px rgba(255, 144, 231, 0.8),
        inset 0 0 8px rgba(255, 144, 231, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.gold-button {
    position: relative;
    background: linear-gradient(90deg, #e09137, #d9b309);
    color: #000000;
    padding: 10px 30px;
    font-size: 13px;
    line-height: 13px;
    font-weight: 600;
    /* text-transform: uppercase; */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1;
    overflow: visible;
    box-shadow: 0 0 40px rgba(252, 245, 186, 0.6),
        /* Stronger outer glow */
        inset 0 0 6px rgba(252, 245, 186, 0.3);
    transition: all 0.3s ease-in-out;
}

.gold-button.big {
    font-size: 16px;
    padding: 13px 40px;
}

.gold-button::before,
.gold-button::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    /* Increased height of glow bar */
    background: radial-gradient(ellipse at center, rgba(255, 245, 186, 0.9), transparent 80%);
    filter: blur(35px);
    /* Stronger blur for a smoother larger glow */
    z-index: -1;
}

.gold-button::before {
    top: -25px;
}

.gold-button::after {
    bottom: -25px;
}

.custom-shadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Animations for CTAs */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.site-btn-design:hover {
    animation: pulse 2s infinite;
}

/* Countdown timer styles */
#countdown {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}


/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}

/* Better focus states for accessibility */
a:focus, button:focus {
    outline: 3px solid #4064aa;
    outline-offset: 2px;
}

/* Loading optimization */
img {
    loading: lazy;
    max-width: 100%;
    height: auto;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, rgba(194, 56, 156, 0.1) 0%, rgba(64, 100, 170, 0.1) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1920px) {
    .hero-section {
        min-height: 85vh;
    }
}

/* Custom Video Player Styles */
.video-container {
    position: relative;
    background: linear-gradient(135deg, #c2389c 0%, #4064aa 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #c2389c, #4064aa);
    border-radius: inherit;
    z-index: -1;
}

.play-button-wrapper {
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-button-wrapper:hover {
    transform: scale(1.1);
}

.play-button-circle {
    animation: pulse-play 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
}

@keyframes pulse-play {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 10px 40px rgba(194, 56, 156, 0.5));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 15px 50px rgba(194, 56, 156, 0.8));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 40px rgba(194, 56, 156, 0.5));
    }
}

/* Section Spacing */
section {
    margin-bottom: 0;
}

.section-spacing {
    padding: 80px 0;
}

.section-spacing-sm {
    padding: 60px 0;
}

.section-spacing-lg {
    padding: 120px 0;
}

/* Better container spacing */
.container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* CTA Button Container Spacing */
.cta-container {
    margin: 40px 0;
}

.cta-container .relative {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 60px 0;
    }
    
    .section-spacing-sm {
        padding: 40px 0;
    }
    
    .section-spacing-lg {
        padding: 80px 0;
    }
    
    .cta-container {
        margin: 30px 0;
    }
}

.play-icon {
    transition: all 0.3s ease;
}

.play-button-wrapper:hover .play-icon {
    transform: scale(1.1);
}

/* Video overlay effects */
#playButtonOverlay {
    backdrop-filter: blur(1px);
    transition: all 0.3s ease;
}

#playButtonOverlay:hover {
    backdrop-filter: blur(0px);
}

/* Ensure video doesn't show controls initially */
#backgroundVideo::-webkit-media-controls {
    display: none !important;
}

#backgroundVideo::-webkit-media-controls-panel {
    display: none !important;
}

#backgroundVideo::-webkit-media-controls-play-button {
    display: none !important;
}

#backgroundVideo::-webkit-media-controls-start-playback-button {
    display: none !important;
}

@media (max-width:1199px) {
    .site-btn-design {
        padding: 16px 40px;
        font-size: 18px;
    }
    .btn-top-design{
        top: -20px;
    }
     .btn-bottom-design{
        bottom: -20px;
    }
}

@media (max-width:767px) {
    .hero-section {
        min-height: auto;
        padding: 20px 0;
    }
    
    .site-btn-design {
        padding: 16px 32px !important;
        font-size: 16px !important;
    }

    .btn-top-design {
        top: -18px;
    }

    .btn-bottom-design {
        bottom: -20px;
    }
    
    .play-button-circle svg {
        width: 80px !important;
        height: 80px !important;
    }
    
    .video-container {
        margin: 0 10px;
    }
    
    /* Stack video and CTA vertically on mobile */
    .hero-section .grid.lg\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-section .order-1 {
        order: 1;
    }
    
    .hero-section .order-2 {
        order: 2;
    }
}

@media (max-width:575px) {
    .site-btn-design {
        padding: 14px 24px !important;
        font-size: 14px !important;
    }

    .btn-top-design {
        top: -12px;
    }

    .btn-bottom-design {
        bottom: -15px;
    }

    .gold-button.big {
        font-size: 14px;
    }
}