/* Hero Text Overlay Styles */
.hero-text-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: heroTextEntrance 1.5s ease-out;
}

.hero-flash-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    margin-bottom: 10px;
    animation: flashPulse 2s infinite;
    letter-spacing: 2px;
}

.hero-impact-text {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #f1c40f;
    text-shadow: 0 0 15px rgba(0,0,0);
    margin-bottom: 20px;
    animation: glow 1s ease-in-out infinite alternate;
}

.hero-stats-banner {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    padding: 15px 25px;
    border: 2px solid #16a085;
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.3);
}

.stat-item {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 600;
    color: white;
    white-space: nowrap;
    animation: statCounter 0.8s ease-out;
}

/* Animations */
@keyframes heroTextEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes flashPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 107, 107, 1), 0 0 40px rgba(255, 107, 107, 0.5);
        transform: scale(1.05);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 15px rgba(241, 196, 15, 0.6);
    }
    100% {
        text-shadow: 0 0 25px rgba(241, 196, 15, 0.9), 0 0 35px rgba(241, 196, 15, 0.4);
    }
}

@keyframes statCounter {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text-overlay {
        top: 80px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
    }
    
    .hero-stats-banner {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
    }
    
    .stat-item {
        font-size: 0.9rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 5px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn.active {
    background: #16a085;
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #16a085;
}

/* Hero Section */

.hero {
  height: 100vh;
  background-image: url('images/4.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 160, 133, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #16a085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 50px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 160, 133, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #16a085;
    padding: 15px 35px;
    border: 2px solid #16a085;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #16a085;
    color: white;
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-item i {
    color: #16a085;
    font-size: 1.1rem;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: #ff6b6b;
}

.problem p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: white;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: #16a085;
}

.solution p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.solution-cta {
    margin-top: 40px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: white;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: white;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #16a085;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Game Modes Section */
.game-modes {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.game-modes-visual {
    text-align: center;
    margin: 60px 0;
}

.game-modes-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.mode-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mode-card.tutorial {
    border-color: #f39c12;
}

.mode-card.friends {
    border-color: #27ae60;
}

.mode-card.offline {
    border-color: #3498db;
}

.mode-card.online {
    border-color: #e74c3c;
}

.mode-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.mode-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

.mode-card.tutorial .mode-number {
    background: #f39c12;
}

.mode-card.friends .mode-number {
    background: #27ae60;
}

.mode-card.offline .mode-number {
    background: #3498db;
}

.mode-card.online .mode-number {
    background: #e74c3c;
}

.mode-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mode-card p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Value Stack Section */
.value-stack {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: white;
}

.freemium-explanation {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.freemium-explanation p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.value-items {
    max-width: 600px;
    margin: 60px auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:last-child {
    border-bottom: none;
}

.value-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.value-item.free i {
    color: #27ae60;
    font-size: 1.2rem;
    min-width: 20px;
}

.value-item.premium i {
    color: #f39c12;
    font-size: 1.2rem;
    min-width: 20px;
}

.value-text {
    flex: 1;
    font-size: 1.1rem;
}

.free-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.premium-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.value-total {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid #16a085;
}

.goodie-offer {
    margin-bottom: 30px;
}

.goodie-offer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f1c40f;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

.bonus-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bonus-item {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid #f1c40f;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #f1c40f;
    white-space: nowrap;
}

.bonus-value {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.bonus-label {
    color: #f1c40f;
    font-weight: 600;
}

.bonus-amount {
    color: #f1c40f;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: line-through;
    opacity: 0.7;
}

.your-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.price-label {
    color: white;
}

.price-amount {
    color: #16a085;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(22, 160, 133, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bonus-items {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .bonus-item {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .your-price {
        flex-direction: column;
        gap: 10px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #16a085;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    color: #16a085;
}

.testimonial-author span {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #16a085;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 25px;
}

.faq-answer p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.urgency-counter {
    font-size: 1.5rem;
    font-weight: bold;
}

.counter-number {
    color: #f1c40f;
    font-size: 2.5rem;
    margin: 0 10px;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: white;
    text-align: center;
}

.download-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: #16a085;
}

.download-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn {
    transition: all 0.3s ease;
    display: block;
}

.download-btn:hover {
    transform: translateY(-5px);
}

.download-btn img {
    height: 60px;
    width: auto;
}

.download-note {
    font-size: 1.1rem;
    color: #f1c40f;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #16a085;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .game-modes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .game-modes-grid {
        grid-template-columns: 1fr;
    }
    
    .language-toggle {
        top: 10px;
        right: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.testimonial-card,
.mode-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}


/* Newsletter Signup Styles */
.newsletter-signup {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.newsletter-signup h3 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.newsletter-signup p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
    border: none;
    border-radius: 50px;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: 140px;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.benefit-item {
    color: #00ffff;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    white-space: nowrap;
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

.newsletter-success {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #000;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.newsletter-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #006633;
}

.newsletter-success h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.newsletter-success p {
    color: #000;
    opacity: 0.8;
    margin: 0;
}

.newsletter-value {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
}

.newsletter-value .value-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.newsletter-value .value-amount {
    color: #00ffff;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        min-width: 100%;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefit-item {
        text-align: center;
    }
}


/* DSGVO Checkbox Styles */
.privacy-checkbox {
    margin: 1.5rem 0;
    text-align: left;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

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

.checkbox-container:hover .checkmark {
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background: #00ffff;
    border-color: #00ffff;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.4;
    flex: 1;
}

.checkbox-text a {
    color: #00ffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: #00cccc;
}

.double-optin-info {
    color: #00ffff !important;
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #00ffff;
}

/* Form Validation Styles */
.newsletter-form input:invalid {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.newsletter-form input:valid {
    border-color: #00ff88;
}

.newsletter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 5px;
    border-left: 3px solid #ff4444;
}

/* Responsive DSGVO Checkbox */
@media (max-width: 768px) {
    .checkbox-container {
        gap: 0.5rem;
    }
    
    .checkbox-text {
        font-size: 0.8rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 9px;
    }
}

