/* ==== GLOBAL & TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Inter:wght@300;400;600&display=swap');

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
    
    background-image: 
        radial-gradient(circle at 10px 10px, rgba(74, 144, 226, 0.08) 1px, transparent 0),
        radial-gradient(circle at 30px 30px, rgba(74, 144, 226, 0.05) 1px, transparent 0);
    background-size: 60px 60px, 100px 100px;
    animation: bgMove 40s linear infinite;
}

@keyframes bgMove {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 100px 100px; }
}

/* ==== HEADER ==== */
header {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="%234a90e2" stroke-width="2" opacity="0.1" d="M50 10 L70 40 L60 80 L40 80 L30 40 Z"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float { 
    0% { transform: translate(0,0); } 
    100% { transform: translate(100px,100px); } 
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #4a90e2, #70b7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(74,144,226,0.4);
}

header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ==== GENERAL SECTION ==== */
section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    color: #4a90e2;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #4a90e2;
    border-radius: 2px;
}

.card {
    background: rgba(20,20,30,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(74,144,226,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

/* ==== SCREENSHOTS – 2×2 GRID ==== */
.screenshots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);     /* Forces exactly 2 columns on large screens */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.screenshots img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
    border: 3px solid rgba(74,144,226,0.2);
    transition: all 0.4s ease;
}

.screenshots img:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(74,144,226,0.35);
    border-color: #4a90e2;
}

/* Mobile fallback – 1 column under 800px */
@media (max-width: 800px) {
    .screenshots {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .screenshots img:hover {
        transform: scale(1.02);
    }
}

/* ==== TEAM ==== */
/* ==== TEAM – BIG SINGLE MEMBER STYLE ==== */
.team {
    display: flex;
    justify-content: center;        /* centers the single card */
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.team-member {
    text-align: center;
    background: rgba(20,20,30,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 2px solid rgba(74,144,226,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    max-width: 500px;
    width: 100%;
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-12px);
    border-color: #4a90e2;
    box-shadow: 0 30px 80px rgba(74,144,226,0.25);
}

.team-member img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(74,144,226,0.4);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: all 0.4s ease;
}

.team-member img:hover {
    transform: scale(1.1);
    border-color: #4a90e2;
    box-shadow: 0 15px 40px rgba(74,144,226,0.4);
}

.team-member p {
    margin: 0;
    font-size: 1.4rem;
}

.team-member strong {
    font-size: 2rem;
    color: #4a90e2;
    display: block;
    margin-bottom: 8px;
    font-family: 'Orbitron', sans-serif;
}

/* Optional: make it even more dramatic on large screens */
@media (min-width: 900px) {
    .team-member {
        padding: 70px 60px;
    }
    .team-member img {
        width: 260px;
        height: 260px;
    }
}
/* ==== VIDEO ==== */
.video-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

iframe {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    max-width: 100%;
}

/* ==== DOWNLOAD SECTION ==== */
.download-section {
    text-align: center;
    padding: 60px 20px;
}

/* ==== BUTTONS ==== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    margin: 10px;
    background: linear-gradient(135deg, #4a90e2, #3575c4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(74,144,226,0.4);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(74,144,226,0.6);
    background: linear-gradient(135deg, #3575c4, #4a90e2);
}

.btn-outline {
    background: transparent;
    border: 2px solid #4a90e2;
}

.btn-outline:hover {
    background: #4a90e2;
}

/* ==== FOOTER ==== */
footer {
    text-align: center;
    padding: 40px;
    background: #111;
    color: #666;
    font-size: 0.9rem;
}