:root {
    --primary-color: #ffffff;
    --secondary-color: #e2e8f0;
    --accent-color: #38bdf8; /* Light blue for winter/tech feel */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Adjust based on image brightness */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(2px);
}

/* Layout */
#root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Header */
.site-header {
    position: absolute;
    top: -100px; /* Adjust based on layout needs, or keep static */
    left: 0;
    width: 100%;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Main Content */
.text-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    /*border-radius: 1.5rem;*/
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin: 0 auto;
    /*animation: float 6s ease-in-out infinite;*/
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(56, 189, 248, 0.2);
    color: #bae6fd;
   /* border-radius: 9999px;*/
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(56, 189, 248, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
}

.hero-title .highlight {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
/*
.btn-primary {
    background: #0D350D;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.2);
}
*/
.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: black; 
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations 
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}*/

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 30%; animation-duration: 12s; animation-delay: 2s; }
.snowflake:nth-child(3) { left: 50%; animation-duration: 8s; animation-delay: 4s; }
.snowflake:nth-child(4) { left: 70%; animation-duration: 15s; animation-delay: 1s; }
.snowflake:nth-child(5) { left: 90%; animation-duration: 11s; animation-delay: 3s; }

@keyframes fall {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .text-container {
        padding: 2rem 1.5rem;
    }
    
    .cta-group {
        flex-direction: column;
    }
}


.coupon-container .close {
  width: 24px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  cursor: pointer;
}

.coupon-container {
  position: relative;
  font-family: "Roboto", sans-serif;
  max-width: 350px;
  text-align: center;
  background: #a3f9ff;
  margin: 20px auto 50px auto;
  padding-bottom: 50px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: all 400ms ease;
}

.coupon-container.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.coupon-container .gift {
  position: absolute;
  width: 180px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.coupon-container .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.coupon-container h2,
.coupon-container p,
.coupon-container .discount,
.coupon-container .code,
.coupon-container .btn {
  position: relative;
}

.coupon-container h2 {
  color: #023047;
  font-weight: 900;
  font-size: 30px;
  padding-top: 70px;
  margin-bottom: 0;
}

.coupon-container p {
  font-size: 18px;
  color: #023047;
  margin: 8px;
}

.coupon-container .discount {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: #076170;
}


.coupon-container .code {
    font-size: 45px;
    font-weight:900;
}


.coupon-container .btn {
  text-decoration: none;
  background: #e63946;
  padding: 16px;
  display: inline-block;
  width: 100%;
  color: #fff;
  box-sizing: border-box;
  margin-top: 24px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 300ms ease;
}

.coupon-container .btn:hover {
  background: #e22535;
}

/*
.get-discount-btn {
    background: rgba(255, 255, 255, 0.9);
    color: black; 
    border: 1px solid rgba(255, 255, 255, 0.8);
}
*/
/* .get-discount-btn:hover {background: rgba(255, 255, 255, 0.2); */
    
    
.get-discount-btn {
    padding: 0.75rem 1.5rem;
    background: #0D350D;
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.get-discount-btn:hover {
    /*transform: translateY(-2px);*/
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.2);
}   
    
    
    
    
    
    
    
    
    
    

/*
.get-discount-btn {
    padding: 8px 32px;
    background: #023047;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    
}

*/





