:root {
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --dark-bg: #1a1a2e;
    --card-bg: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    overflow-x: hidden;
}
.warpper{
    background: url("../img/bg4.webp") no-repeat center center;
    background-size: cover;
}
/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url("../img/bg1.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.hero-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.3)"/></svg>');*/
/*    opacity: 0.5;*/
/*}*/

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.hero-date {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.claim-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

/* Laptop floating animation */
.laptop-float {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.laptop-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.laptop-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.laptop-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #510964 0%, #ec9cc3 50%, #82356e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

/* Info Section */
.info-section {
    /*background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);*/
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.info-text {
    text-align: center;
    line-height: 2;
    font-size: 1.1rem;
}

.info-text a {
    color: #7450af;
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

.highlight-text {
    color: #7450af;
    font-weight: 600;
}

.date-info {
    text-align: center;
    margin-top: 2rem;
}

.date-info p {
    margin: 0.5rem 0;
}

.date-label {
    color: #7450af;
    font-weight: 600;
}

/* Buttons */
.btn-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 0.5rem 2.5rem;
    /*border-radius: 50px;*/
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-redeem {
    background: linear-gradient(90deg, #c97e86 0%, #f3aa81 50%, #ad6b79 100%);
    color: white;
}

.btn-redeem:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.btn-terms {
    background: linear-gradient(90deg, #c97e86 0%, #f3aa81 50%, #ad6b79 100%);
    color: white;
    /*border: 2px solid rgba(255,255,255,0.3);*/
}

.btn-terms:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Products Section */
.products-section {
    /*background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);*/
}

.product-card {
    background: linear-gradient(180deg, #352329 0%, #302246 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    padding: 1rem;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

/* Resellers Section */
.resellers-section {
    /*background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);*/
}

.reseller-card {
    background: #191526;
    /*backdrop-filter: blur(10px);*/
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgb(90 58 84);
    max-width: 600px;
    margin: 0 auto;
}

.reseller-list {
    list-style: none;
    text-align: center;
}

.reseller-list li {
    padding: 0.15rem 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
}

/* Footer */
.footer-section {
    /*background: #0f3460;*/
    padding: 5rem 0;
    text-align: center;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: white;
}

/* Modal Styles */
.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-close {
    filter: invert(1);
}

.form-control, .form-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.15);
    border-color: #f093fb;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(240, 147, 251, 0.25);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-label {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.form-text {
    color: rgba(255,255,255,0.6);
}

.form-check-input {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.form-check-input:checked {
    background-color: #f093fb;
    border-color: #f093fb;
}

.form-check-label {
    color: rgba(255,255,255,0.9);
}

.btn-submit {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    color: white;
}

.btn-submit:disabled {
    background: rgba(255,255,255,0.2);
    cursor: not-allowed;
}

/* Terms Modal */
.terms-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.terms-content::-webkit-scrollbar {
    width: 8px;
}

.terms-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.terms-content::-webkit-scrollbar-thumb {
    background: #f093fb;
    border-radius: 4px;
}

.terms-content h5 {
    color: #f093fb;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-content p, .terms-content li {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.terms-content ul {
    padding-left: 1.5rem;
}

.cashback-table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.cashback-table th,
.cashback-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cashback-table th {
    color: #f093fb;
    font-weight: 600;
}

.cashback-table td {
    color: rgba(255,255,255,0.8);
}

/* Trig.js Animation Classes */
.trig-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trig-fade-up.trig {
    opacity: 1;
    transform: translateY(0);
}

.trig-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trig-fade-left.trig {
    opacity: 1;
    transform: translateX(0);
}

.trig-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trig-fade-right.trig {
    opacity: 1;
    transform: translateX(0);
}

.trig-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trig-scale.trig {
    opacity: 1;
    transform: scale(1);
}

/* Decorative elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%);
    filter: blur(40px);
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
}

/* File upload styling */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-wrapper input[type=file] {
    position: absolute;
    left: -9999px;
}

.file-upload-label {
    display: block;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: rgba(255,255,255,0.1);
    border-color: #f093fb;
}

.file-upload-label i {
    font-size: 2rem;
    color: #f093fb;
    margin-bottom: 0.5rem;
}

.upload-preview {
    max-width: 100%;
    max-height: 150px;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Required field indicator */
.required::after {
    content: ' *';
    color: #f5576c;
}
.product-name{
   margin-top: 1rem;
    margin-bottom: 0;
}
.product-name a{
    color: #ffffff;
    text-decoration: none;
}
.product-name a:hover{
    color: #f093fb;
}
li a{
    color: #ffffff;
    text-decoration: none;
}
li a:hover{
    color: #f093fb;
}