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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.logo-icon {
    width: 7.5rem;

    /* adjust to taste */
    height: 7.5rem;
    object-fit: contain;
    margin-right: .4rem;

    /* keeps a gap before the text */
}

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

/* Step Management */
.step {
    display: none;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-in-out;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #1a1a1a;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    color: #ff0000;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff0000;
}

.login-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #ff0000;
    color: #ff0000;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #ff0000;
    color: #000;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
}

.highlight {
    color: #ff0000;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-btn {
    background: #ff0000;
    color: #ffffff;
    border: none;
    padding: 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 60px;
}

.cta-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cyber-element {
    width: 300px;
    height: 300px;
    position: relative;
}

.glowing-orb {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff0000, #730000);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

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

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Partners */
.partners {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    margin-top: 40px;
}

.partner {
    color: #444;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff0000;
}

.form-subtitle {
    color: #888;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    text-align: left;
}

.input-label {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #ff0000;
}

.platform-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.platform-btn {
    padding: 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.platform-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.platform-btn.selected {
    background: #ff0000;
    color: #000;
    border-color: #ff0000;
}

.platform-icon {
    font-size: 1.2rem;
}

.continue-btn {
    padding: 15px 40px;
    background: #ff0000;
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.continue-btn:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.continue-btn:not(:disabled):hover {
    background: #7dd800;
    transform: translateY(-2px);
}

.back-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.back-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
}

/* Confirmation Page */
.confirmation-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.loading-section {
    margin-bottom: 60px;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-image: url('assets/loading-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: spin 2s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.confirmation-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ff0000;
}

.confirmation-message {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.5;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #7dd800);
    width: 0%;
    border-radius: 3px;
    animation: progress 8s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    25% {
        width: 20%;
    }

    50% {
        width: 45%;
    }

    75% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.download-info {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    color: #888;
}

.info-value {
    color: #ff0000;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.download-btn,
.try-again-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.download-btn {
    background: #ff0000;
    color: #000;
}

.download-btn:hover {
    background: #7dd800;
    transform: translateY(-2px);
}

.try-again-btn {
    background: transparent;
    border: 2px solid #ff4444;
    color: #ff4444;
}

.try-again-btn:hover {
    background: #ff4444;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        letter-spacing: 2px;
    }

    .stats {
        justify-content: center;
    }

    .partners {
        flex-wrap: wrap;
        gap: 20px;
    }

    .platform-selector {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 15px;
    }

    .nav-link {
        display: none;
    }
}
