/* Careers Page Styles */

:root {
    --primary-color: #ff3333;
    --primary-dark: #cc0000;
    --primary-light: #ff6666;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-light: #181818;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --card-gradient: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.7) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center center;
    opacity: 0.2;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(1px);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-1000px) translateX(100px);
        opacity: 0;
    }
}

/* Container & Content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}


.content-box {
    margin-top: 150px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 51, 51, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-light);
}

p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.countdown-item {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 51, 51, 0.1);
    animation: fadeIn 1s ease;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Email Form */
.email-form {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeIn 1.2s ease;
}

.form-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.input-group {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: var(--bg-light);
    border-radius: 8px 0 0 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-darker);
}

.input-group button {
    padding: 15px 25px;
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transition: var(--transition-fast);
}

.input-group button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    animation: fadeIn 1.5s ease;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Animations */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-item {
        width: 80px;
        height: 80px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .content-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        width: 65px;
        height: 65px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    
    .countdown-item span:last-child {
        font-size: 0.7rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .input-group button {
        border-radius: 8px;
    }
}
