@import url('style.css');

.whitelist-hero {
    height: 40vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    overflow: hidden;
}

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

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-blue);
    box-shadow: 
        50px 50px var(--primary-blue),
        100px 80px var(--primary-blue),
        140px 40px var(--primary-blue),
        200px 120px var(--primary-blue),
        250px 60px var(--primary-blue),
        300px 100px var(--primary-blue),
        350px 30px var(--primary-blue),
        400px 90px var(--primary-blue);
    animation: float-particles 20s linear infinite;
}

.particles::after {
    animation-delay: -10s;
    left: 50%;
}

@keyframes float-particles {
    from {
        transform: translateY(100vh) translateX(0);
    }
    to {
        transform: translateY(-100vh) translateX(-100px);
    }
}

.whitelist-content {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.alert {
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    animation: slideInDown 0.5s ease;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    color: #4caf50;
}

.alert h3 {
    margin-bottom: 0.5rem;
}

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

.info-card {
    background: var(--dark-tertiary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    color: var(--text-secondary);
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.whitelist-form {
    background: var(--dark-tertiary);
    padding: 3rem;
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(0, 102, 255, 0.1);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.whitelist-form h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-group label input[type="checkbox"] {
    transform: scale(1.2);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) skewX(-45deg);
    transition: left 0.5s ease;
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .whitelist-form {
        padding: 2rem;
    }
}