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

body {
    background: linear-gradient(135deg, #1a1a32 0%, #131e3c 25%, #0c315f 50%, #422371 75%, #1d0133 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 25%, rgba(0, 150, 136, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Simple floating animation for subtle elements */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Recruitment Section */
.recruitment-section {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.recruitment-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* Header Badge */
.header-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Title Divider */
.title-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    margin: 2rem auto;
    border-radius: 2px;
}

.recruitment-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recruitment-subtitle {
    font-size: 1.6rem;
    color: #34495e;
    margin: 1rem 0;
    font-weight: 600;
}

.recruitment-description {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.requirements {
    text-align: left;
    margin-bottom: 2.5rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.requirements h2 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.requirements h3 {
    color: #e67e22;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 8px;
    border-left: 4px solid #e67e22;
    position: relative;
}

.requirements h4 {
    color: #f39c12;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.requirements ul {
    list-style: none;
    padding-left: 1rem;
    font-size: 1rem;
    color: #2c3e50;
}

.requirements li::before {
    content: '▶';
    margin-right: 10px;
    color: #e67e22;
    font-size: 0.8em;
}

.requirements li {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.6rem;
    padding: 0.3rem 0;
    transition: all 0.2s ease;
    border-radius: 5px;
    padding-left: 0.5rem;
}

.requirements li:hover {
    background: rgba(230, 126, 34, 0.05);
    transform: translateX(5px);
}

/* Requirement Cards */
.requirement-card {
    background: white;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.requirement-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.requirement-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirement-card h3 i {
    font-size: 1.2em;
    color: #e67e22;
}

.requirement-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}

.requirement-card h4 i {
    font-size: 1em;
    color: #f39c12;
}

/* Deadline Container */
.deadline-container {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 12px;
    border: 2px solid #e74c3c;
}

.deadline-note {
    font-size: 1.8rem;
    color: #c0392b;
    margin: 0;
    font-weight: 700;
}

.deadline-note i {
    margin-right: 10px;
    color: #e74c3c;
}

/* Countdown Timer */
.countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2.5rem 0;
    padding: 2rem;
    background: #2c3e50;
    border-radius: 20px;
    border: 2px solid #34495e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timer {
    text-align: center;
    margin-bottom: 2rem;
}

.timer h3 {
    font-weight: 700;
    font-size: 1.8rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

.counter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    flex-wrap: wrap;
}

.counter__box {
    text-align: center;
    width: 110px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.counter__box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.counter__time {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.counter__duration {
    font-size: 0.9rem;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    color: #bdc3c7;
    font-weight: 500;
}

.dots {
    font-size: 2.5rem;
    color: #3498db;
    margin: 0 0.5rem;
    padding: 0;
}

.black-white {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border: 2px solid #95a5a6;
}

.sky-blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: 2px solid #85c1e9;
}

/* Signup Section */
.signup {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.signup h1 {
    max-width: 400px;
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    min-width: 280px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

.btn i {
    margin-right: 8px;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 2.5rem;
    margin: 5%;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid #e9ecef;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #95a5a6;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
}

.close-btn:hover {
    color: #e74c3c;
    background: #fdf2f2;
}

.popup-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.popup-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.popup-actions {
    margin-top: 1.5rem;
}

.popup-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: auto;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.popup-btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .recruitment-container {
        max-width: 95%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .recruitment-section {
        padding: 2rem 1rem;
    }
    
    .recruitment-container {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .recruitment-title {
        font-size: 2.2rem;
    }
    
    .recruitment-subtitle {
        font-size: 1.4rem;
    }
    
    .recruitment-description {
        font-size: 1rem;
    }
    
    .requirements h2 {
        font-size: 1.7rem;
    }
    
    .requirements h3 {
        font-size: 1.3rem;
    }
    
    .countdown {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .timer h3 {
        font-size: 1.5rem;
    }
    
    .counter__box {
        width: 90px;
        height: 110px;
    }
    
    .counter__time {
        font-size: 2.5rem;
    }
    
    .counter__duration {
        font-size: 0.8rem;
    }
    
    .dots {
        font-size: 2rem;
    }
    
    .signup h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        min-width: 240px;
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .deadline-note {
        font-size: 1.5rem;
    }
    
    .header-badge {
        top: -12px;
        right: 20px;
        padding: 6px 15px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .title-divider {
        width: 80px;
        height: 2px;
        margin: 1.5rem auto;
    }
    
    .requirement-card {
        padding: .7rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .recruitment-section {
        padding: 1rem 0.5rem;
    }
    
    .recruitment-container {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .recruitment-title {
        font-size: 1.8rem;
    }
    
    .recruitment-subtitle {
        font-size: 1.2rem;
    }
    
    .recruitment-description {
        font-size: 0.95rem;
    }
    
    .requirements {
        padding: .5rem;
    }
    
    .requirements h2 {
        font-size: 1.4rem;
    }
    
    .requirements h3 {
        font-size: 1.2rem;
    }
    
    .requirements h4 {
        font-size: 1rem;
    }
    
    .requirements li {
        font-size: 0.95rem;
    }
    
    .counter {
        gap: 0.5rem;
    }
    
    .counter__box {
        width: 75px;
        height: 95px;
        margin: 0.25rem;
    }
    
    .counter__time {
        font-size: 2rem;
    }
    
    .counter__duration {
        font-size: 0.7rem;
    }
    
    .dots {
        font-size: 1.8rem;
        margin: 0 0.25rem;
    }
    
    .signup h1 {
        font-size: 1.3rem;
    }
    
    .btn {
        min-width: 200px;
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .deadline-note {
        font-size: 1.3rem;
    }
    
    .popup-content {
        padding: 2rem;
        margin: 10%;
    }
    
    .popup-icon {
        font-size: 2.5rem;
    }
    
    .popup-content h3 {
        font-size: 1.4rem;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}