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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0f1c;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffcc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-menu a:hover {
    color: #00ffcc;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a2332 0%, #0a0f1c 70%);
}

.currency-waves {
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300ffcc;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ff6b35;stop-opacity:0.05" /></linearGradient></defs><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="url(%23grad)"/></svg>');
    animation: waveFlow 20s linear infinite;
}

@keyframes waveFlow {
    0% { transform: translateX(-50%) translateY(-50%); }
    100% { transform: translateX(-60%) translateY(-40%); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '₹';
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 255, 204, 0.3);
    animation: floatUp 8s linear infinite;
}

.floating-particles::before {
    left: 20%;
    animation-delay: -2s;
}

.floating-particles::after {
    right: 20%;
    animation-delay: -5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
}

.card-3d {
    perspective: 1000px;
}

.credit-card {
    width: 350px;
    height: 220px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    border-radius: 20px;
    position: relative;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 255, 204, 0.2);
    border: 1px solid rgba(0, 255, 204, 0.3);
    overflow: hidden;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    border-radius: 20px;
}

@keyframes cardFloat {
    0%, 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(0px); }
    50% { transform: rotateY(5deg) rotateX(-5deg) translateY(-10px); }
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.card-chip {
    position: absolute;
    top: 60px;
    left: 30px;
    width: 40px;
    height: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 5px;
}

.card-number {
    position: absolute;
    bottom: 80px;
    left: 30px;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.card-name {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ffcc;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #ffffff, #00ffcc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* CTA Button */
.cta-button {
    position: relative;
    background: linear-gradient(45deg, #00ffcc, #ff6b35);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0f1c;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
}

.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.5s ease;
}

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

/* Scroll Journey */
.scroll-journey {
    padding: 8rem 0;
    position: relative;
}

.journey-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.journey-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.journey-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pos-machine {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #2d5a87, #1e3a5f);
    border-radius: 15px;
    position: relative;
    border: 2px solid rgba(0, 255, 204, 0.3);
    overflow: hidden;
}

.pos-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    border-radius: 15px;
}

.card-tap {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 60px;
    height: 40px;
    background: linear-gradient(45deg, #00ffcc, #ff6b35);
    border-radius: 8px;
    animation: cardTap 2s ease-in-out infinite;
}

@keyframes cardTap {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}

.cashback-burst {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.money-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    border-radius: 50%;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    animation: coinBurst 2s ease-in-out infinite;
}

.coin:nth-child(1) {
    top: 50%;
    left: 50%;
    animation-delay: 0s;
}

.coin:nth-child(2) {
    top: 30%;
    left: 30%;
    animation-delay: 0.3s;
}

.coin:nth-child(3) {
    top: 70%;
    left: 70%;
    animation-delay: 0.6s;
}

@keyframes coinBurst {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

.digital-wallet {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    border-radius: 15px;
    position: relative;
    border: 2px solid rgba(0, 255, 204, 0.3);
    overflow: hidden;
}

.wallet-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    border-radius: 15px;
}

.wallet-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(0, 255, 204, 0.3), transparent);
    animation: walletFill 3s ease-in-out infinite;
}

@keyframes walletFill {
    0% { height: 0; }
    50% { height: 80%; }
    100% { height: 0; }
}

.token {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00ffcc;
    border-radius: 50%;
    animation: tokenFloat 2s ease-in-out infinite;
}

.token:nth-child(2) {
    top: 20px;
    left: 30px;
    animation-delay: 0s;
}

.token:nth-child(3) {
    top: 40px;
    left: 60px;
    animation-delay: 0.5s;
}

.token:nth-child(4) {
    top: 60px;
    left: 90px;
    animation-delay: 1s;
}

@keyframes tokenFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-10px) scale(1.1); opacity: 1; }
}

.step-content {
    flex: 1;
    max-width: 400px;
}

.step-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffcc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Card Showcase */
.card-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ffffff, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.reward-card {
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.reward-card .card-front,
.reward-card .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.6s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 204, 0.2);
    overflow: hidden;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    border-radius: 20px;
    z-index: -1;
}

.reward-card .card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 107, 53, 0.1));
}

.reward-card:hover .card-front {
    transform: rotateY(-180deg);
}

.reward-card:hover .card-back {
    transform: rotateY(0deg);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.reward-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cashback-rate {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffcc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.card-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.card-benefits span {
    background: rgba(0, 255, 204, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: #0a0f1c;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffcc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-unit {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00ffcc;
    display: inline-block;
    margin-left: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-logo {
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 255, 204, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    background: rgba(0, 255, 204, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: #0a0f1c;
}

.timeline-container {
    display: flex;
    justify-content: space-around;
    align-items: end;
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
}

.timeline-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: end;
}

.timeline-bar {
    width: 60px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, #00ffcc, #ff6b35);
    border-radius: 30px;
    transition: height 1s ease;
    height: 0;
}

.timeline-item.animate .bar-fill {
    height: var(--fill-height);
}

.timeline-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-amount {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffcc;
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a2332 0%, #0a0f1c 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.coin-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coin-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    animation: coinRain 8s linear infinite;
}

.coin-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.coin-particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.coin-particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.coin-particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.coin-particle:nth-child(5) { left: 90%; animation-delay: 1s; }

@keyframes coinRain {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #00ffcc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
.footer {
    background: #0a0f1c;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 255, 204, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.link-group h4 {
    color: #00ffcc;
    margin-bottom: 1rem;
    font-weight: 600;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #00ffcc;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.social-icon:hover {
    background: rgba(0, 255, 204, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .credit-card {
        width: 280px;
        height: 180px;
    }
    
    .journey-step {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }
    
    .step-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }
    
    .timeline-bar {
        width: 300px;
        height: 60px;
    }
    
    .bar-fill {
        width: 0;
        height: 100% !important;
        transition: width 1s ease;
    }
    
    .timeline-item.animate .bar-fill {
        width: var(--fill-width);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: space-around;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Cashback Section */
.cashback-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

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

.cashback-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    transition: all 0.3s ease;
}

.cashback-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 204, 0.2);
}

.cashback-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cashback-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffcc;
    margin-bottom: 1rem;
}

.cashback-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Legal Pages Styles */
.legal-page {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 100%);
    min-height: 100vh;
}

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

.legal-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    background: linear-gradient(45deg, #00ffcc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.effective-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffcc;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ff6b35;
    margin: 1.5rem 0 0.8rem 0;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding-left: 1.5rem;
}

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

.note {
    background: rgba(0, 255, 204, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #00ffcc;
    margin: 1rem 0;
}

.contact-section {
    background: rgba(0, 255, 204, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    margin-top: 3rem;
}

.contact-details {
    margin-top: 1rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0.8rem 0;
}

.logo a {
    color: inherit;
    text-decoration: none;
}