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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Enhanced Anime Background */
.anime-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
    z-index: -2;
    animation: bgShift 15s ease-in-out infinite, fireGlow 8s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes fireGlow {
    0%, 100% { filter: hue-rotate(0deg); }
    25% { filter: hue-rotate(30deg); }
    50% { filter: hue-rotate(60deg); }
    75% { filter: hue-rotate(30deg); }
}

/* Enhanced Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ff4500, transparent),
        radial-gradient(2px 2px at 40px 70px, #ff77c6, transparent),
        radial-gradient(1px 1px at 90px 40px, #78dbff, transparent),
        radial-gradient(3px 3px at 130px 20px, #ffd700, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleMove 20s linear infinite, particlePulse 4s ease-in-out infinite;
}

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

@keyframes particlePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Website Header */
.website-header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.2);
}

.website-name {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff4500, #ff77c6, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.5));
}

.website-tagline {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    position: relative;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4500, #ff77c6, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 5px rgba(255, 69, 0, 0.5)); }
    50% { filter: brightness(1.3) drop-shadow(0 0 15px rgba(255, 69, 0, 0.8)); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff4500, #ff77c6, #ffd700);
    border-radius: 10px;
    opacity: 0;
    filter: blur(15px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #ff4500;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.cta-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 69, 0, 0.4);
    animation: tagFloat 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

@keyframes tagFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: #ffffff;
    animation: slideInLeft 1s ease-out;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #ff4500, #ff77c6, #ffd700, #78dbff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite, slideInRight 1s ease-out 0.3s both;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px) rotateY(-30deg); }
    100% { opacity: 1; transform: translateX(0) rotateY(0deg); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px) rotateY(30deg); }
    100% { opacity: 1; transform: translateX(0) rotateY(0deg); }
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 69, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #ff4500;
    color: #ff4500;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    background: rgba(255, 69, 0, 0.1);
}

.hero-metrics {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
}

.metric-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Hero Visual with 3D Credit Card Rain */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.credit-card-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.credit-card-rain::before,
.credit-card-rain::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 38px;
    background: linear-gradient(135deg, #ff4500, #ff77c6, #ffd700);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    animation: cardRain 4s linear infinite;
}

.credit-card-rain::before {
    top: -50px;
    left: 20%;
    animation-delay: 0s;
}

.credit-card-rain::after {
    top: -50px;
    right: 30%;
    animation-delay: 2s;
}

@keyframes cardRain {
    0% {
        transform: translateY(-50px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(550px) rotateX(360deg) rotateY(180deg) rotateZ(90deg);
        opacity: 0;
    }
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(255, 69, 0, 0.3), rgba(255, 119, 198, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 69, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.elem-1 {
    width: 150px;
    height: 100px;
    top: 50px;
    left: 50px;
    animation: float1 6s ease-in-out infinite;
}

.elem-2 {
    width: 120px;
    height: 80px;
    top: 200px;
    right: 80px;
    animation: float2 8s ease-in-out infinite;
}

.elem-3 {
    width: 100px;
    height: 120px;
    bottom: 100px;
    left: 100px;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(5deg) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(-3deg) scale(1.05); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-25px) rotate(8deg) scale(1.15); }
}

.central-orb {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.4), rgba(255, 119, 198, 0.4));
    animation: orbPulse 4s ease-in-out infinite;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.6);
    z-index: 2;
}

.central-orb::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff4500, #ff77c6, #ffd700, #78dbff);
    opacity: 0.4;
    animation: orbRotate 8s linear infinite;
    z-index: -1;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes orbRotate {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.fire-effects {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.8) 0%, rgba(255, 215, 0, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: fireFlicker 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes fireFlicker {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 69, 0, 0.05), rgba(255, 119, 198, 0.05));
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #ff4500, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.3));
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.4);
    border-color: rgba(255, 119, 198, 0.6);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover .card-shine {
    left: 100%;
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.about-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
    color: #ff4500;
}

.feature-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff4500, #ffd700);
    animation: bulletPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

@keyframes bulletPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.stats-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
}

.stat-name {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(255, 119, 198, 0.05));
    z-index: -1;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
}

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

.form-group {
    position: relative;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4500;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.form-group input:focus + .input-glow,
.form-group select:focus + .input-glow,
.form-group textarea:focus + .input-glow {
    opacity: 0.3;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

/* Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    color: #ffffff;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 69, 0, 0.5);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container:hover .checkmark {
    border-color: #ff4500;
    background: rgba(255, 69, 0, 0.1);
    transform: scale(1.05);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    border-color: #ff4500;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 69, 0, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 69, 0, 0.02), rgba(255, 119, 198, 0.02));
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4500, #ff77c6, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.footer-brand p {
    color: #cccccc;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: #ff4500;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: #cccccc;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #ff4500;
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.social-links a:hover {
    color: #ff4500;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
    animation: iconBounce 2s ease-in-out infinite;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Popular Stores Section */
.popular-stores {
    padding: 120px 0;
    position: relative;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.store-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.store-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.4);
}

.store-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.store-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cashback-rate {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff4500;
    margin-bottom: 1rem;
}

.store-card p {
    color: #cccccc;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.4);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #cccccc;
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.author-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.3);
}

.faq-item h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 69, 0, 0.1), rgba(255, 119, 198, 0.1));
    z-index: -1;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
}

.newsletter-note {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Footer Updates */
.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4500, #ff77c6, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff4500;
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4500, #ff77c6, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 1rem;
}

.legal-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

.legal-text {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
    margin-bottom: 3rem;
}

.legal-text h2 {
    color: #ff4500;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid rgba(255, 69, 0, 0.3);
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    color: #ff77c6;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
}

.legal-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-text li::before {
    content: '▶';
    color: #ff4500;
    position: absolute;
    left: -1.5rem;
    font-size: 0.8rem;
}

.back-to-home {
    text-align: center;
}

.back-to-home .btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #ff4500, #ff77c6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.back-to-home .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .credit-card-rain::before,
    .credit-card-rain::after {
        display: none;
    }
    
    .website-name {
        font-size: 2rem;
    }
    
    .website-tagline {
        font-size: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-text {
        padding: 2rem;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
    }
}