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

body {
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
    background: #0A0A0A;
    color: white;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Orbitron', monospace;
}

/* Background Styles */
.gaming-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.base-dark {
    position: absolute;
    inset: 0;
    background: #111827;
}

.gaming-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.8), rgba(0, 0, 0, 0.9), rgba(55, 65, 81, 0.7), rgba(127, 29, 29, 0.8));
}

.gaming-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gaming-circle-1 {
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.4), rgba(220, 38, 38, 0.2));
    border-radius: 50%;
    filter: blur(3rem);
}

.gaming-circle-2 {
    position: absolute;
    bottom: -10rem;
    left: -10rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(45deg, rgba(185, 28, 28, 0.3), rgba(239, 68, 68, 0.2));
    border-radius: 50%;
    filter: blur(3rem);
}

.gaming-hex-1 {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(220, 38, 38, 0.2);
    transform: rotate(45deg);
    filter: blur(1rem);
}

.gaming-hex-2 {
    position: absolute;
    bottom: 8rem;
    right: 8rem;
    width: 6rem;
    height: 6rem;
    background: rgba(239, 68, 68, 0.25);
    transform: rotate(12deg);
    filter: blur(0.5rem);
}

.gaming-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: 
        linear-gradient(rgba(255,0,0,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,0,0,0.4) 1px, transparent 1px);
    background-size: 60px 60px;
}

.gaming-circuit {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,0,0,0.6) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,0,0,0.5) 1px, transparent 1px);
    background-size: 100px 100px;
}

.gaming-glow {
    position: absolute;
    inset: 0;
}

.gaming-glow-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.4), transparent, rgba(153, 27, 27, 0.4));
}

.gaming-glow-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent, rgba(0,0,0,0.7));
}

/* Animations */
@keyframes smoothButtonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes smoothButtonGlow {
    0%, 100% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.4), 0 0 35px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 35px rgba(239, 68, 68, 0.7), 0 0 55px rgba(239, 68, 68, 0.4); }
}

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

@keyframes submitSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-opera {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    font-family: 'Orbitron', monospace;
    letter-spacing: -0.025em;
}

.logo-gx {
    font-size: 2.5rem;
    font-weight: 900;
    margin-left: 0.25rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ff1744, #ff6b6b, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.logo-opera-normal {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    font-family: 'Orbitron', monospace;
    letter-spacing: -0.025em;
}

.logo-gx-normal {
    font-size: 2rem;
    font-weight: 900;
    margin-left: 0.25rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ff1744, #ff6b6b, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.header-download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, rgba(220, 38, 38, 0.9), rgba(185, 28, 28, 0.9));
    backdrop-filter: blur(16px);
    border: 2px solid rgba(239, 68, 68, 0.6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: smoothButtonPulse 4s ease-in-out infinite, smoothButtonGlow 3s ease-in-out infinite;
}

.header-download-btn:hover {
    transform: scale(1.05);
    border-color: rgba(248, 113, 113, 0.8);
}

.header-download-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
    width: 3.5rem;
    height: 3.5rem;
    justify-content: center;
    padding: 0;
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.content-container {
    max-width: 64rem;
    text-align: center;
    width: 100%;
}

/* Title Section */
.title-section {
    margin-bottom: 2rem;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.05em;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.6);
    margin-bottom: 1.5rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(to right, #f87171, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 2rem rgba(239, 68, 68, 0.5));
}

.title-line-2 {
    display: block;
    background: linear-gradient(to right, #fb923c, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 2rem rgba(239, 68, 68, 0.5));
}

.description {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    color: #fca5a5;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
    max-width: 38rem;
    margin: 0 auto 1.5rem;
    line-height: 1.4;
}

.glitch-line-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.glitch-line {
    width: 8rem;
    height: 0.25rem;
    background: linear-gradient(to right, #ef4444, #dc2626);
    border-radius: 9999px;
    box-shadow: 0 0 1rem rgba(239, 68, 68, 0.6);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    border-color: rgba(248, 113, 113, 0.6);
    box-shadow: 0 0.5rem 1rem rgba(239, 68, 68, 0.3);
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.feature-icon.battery {
    color: #4ade80;
}

.feature-icon.cpu {
    color: #60a5fa;
}

.feature-icon.gamepad {
    color: #a78bfa;
}

.feature-icon.lock {
    color: #fb923c;
}

.feature-card:hover .feature-icon.battery {
    color: #22c55e;
}

.feature-card:hover .feature-icon.cpu {
    color: #3b82f6;
}

.feature-card:hover .feature-icon.gamepad {
    color: #8b5cf6;
}

.feature-card:hover .feature-icon.lock {
    color: #f97316;
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: #fecaca;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    margin: 0;
}

/* Main Content Box */
.main-content-box {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(239, 68, 68, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 0 2rem rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.main-content-box:hover {
    box-shadow: 0 0 2rem rgba(239, 68, 68, 0.5);
}

/* Stats Row */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stats-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(127, 29, 29, 0.5);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(239, 68, 68, 0.6);
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.stats-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(239, 68, 68, 0.5);
}

.stats-icon {
    width: 1.25rem;
    height: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.stats-icon.star {
    color: #fbbf24;
    fill: currentColor;
}

.stats-icon.users {
    color: #ef4444;
}

.stats-icon.shield {
    color: #4ade80;
}

.stats-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

/* Download Section */
.download-section {
    margin-bottom: 2rem;
}

.main-download-btn {
    position: relative;
    background: linear-gradient(to right, #dc2626, #b91c1c, #991b1b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    font-family: 'Rajdhani', sans-serif;
    border: 2px solid rgba(239, 68, 68, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
    max-width: 20rem;
    width: 100%;
    overflow: hidden;
    animation: smoothButtonPulse 4s ease-in-out infinite, smoothButtonGlow 3s ease-in-out infinite;
}

.main-download-btn-normal {
    position: relative;
    background: linear-gradient(to right, #dc2626, #b91c1c, #991b1b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    font-family: 'Rajdhani', sans-serif;
    border: 2px solid rgba(239, 68, 68, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
    max-width: 20rem;
    width: 100%;
    overflow: hidden;
    animation: smoothButtonPulse 4s ease-in-out infinite, smoothButtonGlow 3s ease-in-out infinite;
}

.main-download-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #b91c1c, #991b1b, #7f1d1d);
}

.main-download-btn-normal:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #b91c1c, #991b1b, #7f1d1d);
}

.main-download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.3), rgba(248, 113, 113, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-download-btn:hover::before {
    opacity: 1;
}

.main-download-btn-normal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.3), rgba(248, 113, 113, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-download-btn-normal:hover::before {
    opacity: 1;
}

.main-download-btn i {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    z-index: 10;
}

.main-download-btn-normal i {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    z-index: 10;
}

.main-download-btn span {
    position: relative;
    z-index: 10;
}

.social-proof-main {
    font-size: 0.875rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    color: #f87171;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
    text-align: center;
    margin-top: 1.5rem;
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(239, 68, 68, 0.2);
}

.testimonial-card:hover {
    border-color: rgba(248, 113, 113, 0.6);
    box-shadow: 0 1rem 2rem rgba(239, 68, 68, 0.4);
    transform: translateY(-0.5rem);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(to right, #ef4444, #dc2626);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    position: relative;
    z-index: 10;
}

.testimonial-avatar {
    position: relative;
    margin-bottom: 0.25rem;
}

.avatar-image {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(239, 68, 68, 0.6);
    box-shadow: 0 0.5rem 1rem rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-image {
    border-color: rgba(248, 113, 113, 0.8);
    box-shadow: 0 0.5rem 1.5rem rgba(239, 68, 68, 0.5);
    transform: scale(1.05);
}

.avatar-ring {
    position: absolute;
    inset: -0.5rem;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    animation: pulse-ring 2s ease-in-out infinite;
}

.testimonial-card:hover .avatar-ring {
    opacity: 1;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.star-filled {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.testimonial-text {
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    color: #fecaca;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}

.author-name {
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: #f87171;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.author-title {
    font-size: 0.6875rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    color: #fca5a5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    opacity: 0.9;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(127, 29, 29, 0.5);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(239, 68, 68, 0.6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ef4444;
}

.social-icon:hover {
    border-color: rgba(248, 113, 113, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0.5rem 1rem rgba(239, 68, 68, 0.5);
    color: #f87171;
}

.social-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(239, 68, 68, 0.25);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(0.5rem);
}

.social-icon:hover::after {
    opacity: 1;
}

.social-icon i,
.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
}

/* Footer */
.footer {
    margin-top: 2rem;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: #fca5a5;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-overlay.hidden {
    display: none;
}

.popup-container {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(239, 68, 68, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    margin: 0 1rem;
    box-shadow: 0 1rem 2rem rgba(239, 68, 68, 0.4);
    position: relative;
    animation: popupSlideIn 0.3s ease-out forwards;
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: rgba(127, 29, 29, 0.6);
    border: 2px solid rgba(239, 68, 68, 0.7);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.close-button:hover {
    background: rgba(185, 28, 28, 0.8);
    border-color: rgba(248, 113, 113, 0.9);
    transform: scale(1.1);
    box-shadow: 0 0.5rem 1rem rgba(239, 68, 68, 0.3);
    color: #fecaca;
}

.close-button i {
    width: 1.5rem;
    height: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Popup Header */
.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-title {
    font-size: 1.875rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #ff1744, #ff6b6b, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
    margin-bottom: 0.75rem;
}

.popup-subtitle {
    font-size: 0.875rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    color: #fca5a5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Email Form */
.download-form {
    margin-bottom: 1.5rem;
}

.email-input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.email-input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    z-index: 10;
}

.email-input-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(239, 68, 68, 0.8);
}


.email-input-container input {
    width: 100%;
    padding: 1rem 4rem 1rem 3.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 0.75rem;
    color: white;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input-container input:focus {
    border-color: rgba(248, 113, 113, 0.8);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2), 0 0.5rem 1rem rgba(239, 68, 68, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

.email-input-container input::placeholder {
    color: rgba(252, 165, 165, 0.8);
    font-weight: 600;
}

.email-helper {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.email-helper span {
    font-size: 0.75rem;
    color: rgba(252, 165, 165, 0.6);
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: linear-gradient(to right, #dc2626, #b91c1c, #991b1b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 900;
    font-size: 1.125rem;
    font-family: 'Rajdhani', sans-serif;
    border: 2px solid rgba(239, 68, 68, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    animation: smoothButtonPulse 4s ease-in-out infinite, smoothButtonGlow 3s ease-in-out infinite;
}

.submit-button:hover:not(:disabled) {
    transform: scale(1.05);
    background: linear-gradient(to right, #b91c1c, #991b1b, #7f1d1d);
}

.submit-button:disabled {
    background: linear-gradient(to right, rgba(185, 28, 28, 0.5), rgba(153, 27, 27, 0.5), rgba(127, 29, 29, 0.5));
    cursor: not-allowed;
}

.submit-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.25), rgba(248, 113, 113, 0.25));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover:not(:disabled)::before {
    opacity: 1;
}

.submit-button i,
.submit-button span {
    position: relative;
    z-index: 10;
}

.submit-button i {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(0.25rem);
}

/* Spinner */
.spinner {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner.hidden {
    display: none;
}

/* Social Proof */
.social-proof {
    text-align: center;
}

.social-proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.social-proof-item i {
    width: 1rem;
    height: 1rem;
}

.social-proof-item span {
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
}

.social-proof-text {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(252, 165, 165, 0.7);
}

/* Success State */
.success-state {
    text-align: center;
    padding: 2rem 0;
    animation: submitSuccess 0.5s ease-in-out;
}

.success-state.hidden {
    display: none;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(34, 197, 94, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: #4ade80;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    color: #4ade80;
    margin-bottom: 0.75rem;
}

.success-text {
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(252, 165, 165, 0.9);
    line-height: 1.4;
}

/* Loading States */
.form-loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-loading {
    background: linear-gradient(to right, rgba(185, 28, 28, 0.7), rgba(153, 27, 27, 0.7), rgba(127, 29, 29, 0.7)) !important;
    cursor: not-allowed !important;
}

/* Success Animation */
@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.success-animation {
    animation: successPulse 1s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gaming-circle-1, .gaming-circle-2 {
        width: 15rem;
        height: 15rem;
    }
    
    .gaming-hex-1, .gaming-hex-2 {
        width: 4rem;
        height: 4rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .feature-card {
        padding: 0.75rem;
    }

    .feature-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .feature-title {
        font-size: 0.75rem;
    }

    .feature-description {
        font-size: 0.6875rem;
    }

    .main-content-box {
        padding: 1.5rem;
    }

    .stats-row {
        gap: 0.5rem;
    }

    .stats-card {
        padding: 0.5rem 1rem;
    }

    .stats-text {
        font-size: 0.75rem;
    }

    .main-download-btn {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-icon {
        width: 3rem;
        height: 3rem;
    }

    .social-icon i,
    .social-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .avatar-image {
        width: 2.75rem;
        height: 2.75rem;
    }

    .testimonial-text {
        font-size: 0.6875rem;
    }

    .author-name {
        font-size: 0.6875rem;
    }

    .author-title {
        font-size: 0.625rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: flex;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-container {
        padding: 1.5rem;
    }

    .email-input-container input {
        padding: 1rem 4rem 1rem 3rem;
        font-size: 0.875rem;
    }

    .logo-opera, .logo-gx, .logo-opera-normal, .logo-gx-normal {
        font-size: 2rem;
    }
}

@media (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}