@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;400;600;800&display=swap');

:root {
    --orange: #f59e0b;
    --dark-bg: #050505;
    --upwork: #14a800;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: #fff;
    scroll-behavior: smooth;
}

.text-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.orange-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero-big-text {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.status-badge {
    font-size: 9px;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-number {
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
}

/* Expandable content */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.expandable-content.expanded {
    max-height: 500px;
}

/* Flag icons */
.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    opacity: 0.6;
    transition: 0.3s;
    cursor: pointer;
}

.flag-icon:hover {
    opacity: 1;
    transform: scale(1.2);
}

.flag-active {
    opacity: 1;
    border: 1px solid var(--orange);
}

/* Upwork button */
.btn-upwork {
    background: var(--upwork);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(20, 168, 0, 0.2);
}

.btn-upwork:hover {
    background: #108e00;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(20, 168, 0, 0.4);
}

/* Video container */
.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 4px;
}

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

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

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-number {
        font-size: 60px;
        top: -20px;
        left: -10px;
    }
    
    .glass-card {
        backdrop-filter: blur(10px);
    }
}

/* Swiper custom styles */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-bullet-active {
    background: var(--orange);
}