/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    border-radius: 5px;
}

/* ===== HEADER / NAVIGATION ===== */
header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 32px;
    color: #00f0ff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo h1 span {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav a {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    color: #a0a0b0;
    text-decoration: none;
    margin-left: 30px;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: #ffffff;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(112, 0, 255, 0.05) 0%, transparent 60%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content .badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(0, 240, 255, 0.2);
    margin-bottom: 20px;
    font-family: 'Exo 2', sans-serif;
}

.hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 span {
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    color: #c0c0d0;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Exo 2', sans-serif;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 25px;
    font-size: 13px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image i {
    font-size: 200px;
    color: rgba(0, 240, 255, 0.1);
    animation: float 4s ease-in-out infinite;
}

.floating-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
}

.floating-cube:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    border-color: rgba(0, 240, 255, 0.3);
}

.floating-cube:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
    border-color: rgba(112, 0, 255, 0.3);
}

.floating-cube:nth-child(3) {
    top: 20%;
    right: 0%;
    animation-delay: 4s;
    border-color: rgba(255, 0, 110, 0.3);
}

.floating-cube:nth-child(4) {
    bottom: 10%;
    left: 15%;
    animation-delay: 3s;
    border-color: rgba(0, 240, 255, 0.15);
    width: 40px;
    height: 40px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Particles */
.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle-container span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f0ff;
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-container span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle-container span:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; }
.particle-container span:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.particle-container span:nth-child(4) { top: 30%; left: 75%; animation-delay: 3s; }
.particle-container span:nth-child(5) { top: 50%; left: 40%; animation-delay: 4s; }
.particle-container span:nth-child(6) { top: 10%; left: 60%; animation-delay: 5s; }
.particle-container span:nth-child(7) { top: 70%; left: 55%; animation-delay: 6s; }
.particle-container span:nth-child(8) { top: 40%; left: 15%; animation-delay: 7s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(2); opacity: 1; }
}

/* ===== ANIMATIONS ===== */
.animate-fade {
    animation: fadeIn 1s ease forwards;
}

.animate-slide {
    animation: slideIn 1s ease forwards;
}

.animate-slide-delay {
    animation: slideIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-slide-delay2 {
    animation: slideIn 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.section-title span {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #00f0ff;
}

.feature-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    color: #a0a0b0;
    font-size: 16px;
}

/* ===== FEATURED GAMES ===== */
.featured-games {
    padding: 100px 0;
    background: #0a0a0f;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(112, 0, 255, 0.3);
    box-shadow: 0 10px 40px rgba(112, 0, 255, 0.1);
}

.game-icon {
    position: relative;
    font-size: 50px;
    color: #7000ff;
    margin-bottom: 20px;
    display: inline-block;
}

.game-icon i {
    position: relative;
    z-index: 1;
}

.game-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.game-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.game-card p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    color: #a0a0b0;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.game-card .btn {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    color: #ffffff;
    padding: 8px 25px;
    font-size: 13px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.game-card .btn:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: #050508;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section h3 i {
    color: #00f0ff;
    margin-right: 10px;
}

.footer-section h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    font-family: 'Rajdhani', sans-serif;
    color: #a0a0b0;
    font-size: 16px;
}

.footer-section a {
    font-family: 'Rajdhani', sans-serif;
    color: #a0a0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #00f0ff;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-family: 'Rajdhani', sans-serif;
    color: #a0a0b0;
    font-size: 14px;
}

.footer-bottom span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #00f0ff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content .badge {
        margin: 0 auto 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .features-grid,
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0a0a0f;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    nav.show {
        display: flex;
    }
    
    nav a {
        margin: 10px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 140px 0 60px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    text-align: center;
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header h1 span {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #a0a0b0;
}

/* ===== GAMES PAGE ===== */
.games-page {
    padding: 60px 0 100px;
    background: #0a0a0f;
}

.games-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #a0a0b0;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    color: #ffffff;
    border-color: rgba(0, 240, 255, 0.2);
}

.filter-btn.active {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.games-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.game-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    position: relative;
    animation: fadeIn 0.6s ease forwards;
}

.game-item:hover {
    transform: translateY(-10px);
    border-color: rgba(112, 0, 255, 0.3);
    box-shadow: 0 15px 50px rgba(112, 0, 255, 0.15);
}

.game-item-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(112, 0, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-item-image i {
    font-size: 70px;
    color: rgba(112, 0, 255, 0.3);
    transition: 0.4s;
}

.game-item:hover .game-item-image i {
    transform: scale(1.1);
    color: rgba(112, 0, 255, 0.5);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.game-overlay span {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    padding: 12px 30px;
    border-radius: 50px;
    transform: scale(0.8);
    transition: 0.4s;
}

.game-item:hover .game-overlay span {
    transform: scale(1);
}

.game-item-content {
    padding: 25px;
}

.game-item-content .game-tag {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.1);
    margin-bottom: 12px;
}

.game-item-content h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #ffffff;
}

.game-item-content p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.game-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.game-meta span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #a0a0b0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-meta span i {
    color: #00f0ff;
    font-size: 12px;
}

.game-item-content .btn-small {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    color: #ffffff;
    padding: 8px 25px;
    font-size: 13px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.game-item-content .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}

/* ===== RESPONSIVE GAMES PAGE ===== */
@media (max-width: 992px) {
    .games-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .games-masonry {
        grid-template-columns: 1fr;
    }
    .games-filter {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    .page-header h1 {
        font-size: 28px;
    }
    .game-item-image {
        height: 140px;
    }
    .game-item-image i {
        font-size: 50px;
    }
}

/* ===== PRIVACY POLICY PAGE ===== */
.policy-page {
    padding: 60px 0 100px;
    background: #0a0a0f;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.policy-intro p {
    font-family: 'Rajdhani', sans-serif;
    color: #c0c0d0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

.policy-intro strong {
    color: #00f0ff;
}

.policy-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
    transition: 0.3s;
}

.policy-section:hover {
    border-color: rgba(0, 240, 255, 0.1);
}

.policy-icon {
    font-size: 28px;
    color: #00f0ff;
    margin-bottom: 15px;
}

.policy-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.policy-section h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #00f0ff;
    margin-bottom: 8px;
}

.policy-section p {
    font-family: 'Rajdhani', sans-serif;
    color: #c0c0d0;
    font-size: 16px;
    line-height: 1.8;
}

.policy-subsection {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 240, 255, 0.1);
}

.policy-subsection:last-child {
    margin-bottom: 0;
}

.policy-subsection h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #00f0ff;
    margin-bottom: 5px;
}

.policy-subsection p {
    font-family: 'Rajdhani', sans-serif;
    color: #a0a0b0;
    font-size: 15px;
    line-height: 1.7;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.policy-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
}

.policy-card h3 i {
    color: #00f0ff;
    margin-right: 8px;
}

.policy-card p {
    font-family: 'Rajdhani', sans-serif;
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.7;
}

.policy-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.policy-list li {
    font-family: 'Rajdhani', sans-serif;
    color: #c0c0d0;
    font-size: 15px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-list li i {
    color: #00f0ff;
    font-size: 14px;
    min-width: 18px;
}

.policy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.policy-tag {
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(0, 240, 255, 0.08);
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: 0.3s;
}

.policy-tag:hover {
    background: rgba(0, 240, 255, 0.15);
    transform: translateY(-2px);
}

.contact-section {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(112, 0, 255, 0.05));
    border-color: rgba(0, 240, 255, 0.1);
}

.policy-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #00f0ff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: 0.3s;
    margin-top: 10px;
}

.policy-email:hover {
    background: rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    .policy-list {
        grid-template-columns: 1fr;
    }
    .policy-section {
        padding: 20px;
    }
    .policy-section h2 {
        font-size: 20px;
    }
    .policy-email {
        font-size: 14px;
        padding: 10px 18px;
    }
    .policy-intro {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 15px;
    }
    .policy-tag {
        font-size: 11px;
        padding: 4px 12px;
    }
}

/* ===== ABOUT US PAGE ===== */
.ceo-section {
    padding: 60px 0 80px;
    background: #0a0a0f;
}

.ceo-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: 0.3s;
}

.ceo-card:hover {
    border-color: rgba(0, 240, 255, 0.1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.ceo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-avatar {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-avatar i {
    font-size: 100px;
    color: #00f0ff;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.ceo-ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(0, 240, 255, 0.1);
    animation: ringPulse 3s ease-in-out infinite;
}

.ceo-ring:nth-child(2) {
    width: 250px;
    height: 250px;
    animation-delay: 1s;
    border-color: rgba(112, 0, 255, 0.1);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 1; }
}

.ceo-badge {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.1);
    margin-bottom: 15px;
}

.ceo-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #ffffff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #7000ff;
    font-weight: 600;
    margin-bottom: 15px;
}

.ceo-description {
    font-family: 'Rajdhani', sans-serif;
    color: #a0a0b0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.ceo-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.ceo-stat {
    text-align: center;
}

.ceo-stat .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #00f0ff;
    display: block;
}

.ceo-stat .stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #a0a0b0;
}

.ceo-social {
    display: flex;
    gap: 15px;
}

.ceo-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0b0;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.ceo-social a:hover {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    color: #ffffff;
    transform: translateY(-3px);
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #c0c0d0;
    line-height: 1.8;
}

.about-icon-box {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.mission-section {
    padding: 80px 0;
    background: #0a0a0f;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
    font-size: 45px;
    color: #00f0ff;
    margin-bottom: 20px;
}

.mission-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.mission-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #a0a0b0;
    line-height: 1.7;
}

.what-we-do {
    padding: 80px 0 100px;
    background: #0f0f1a;
}

.section-subtitle {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: #a0a0b0;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(112, 0, 255, 0.3);
    box-shadow: 0 10px 40px rgba(112, 0, 255, 0.1);
}

.service-icon {
    font-size: 40px;
    color: #7000ff;
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    color: #00f0ff;
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #a0a0b0;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.02), rgba(112, 0, 255, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number-large {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label-large {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #a0a0b0;
    margin-top: 5px;
    display: block;
}

@media (max-width: 992px) {
    .ceo-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    .ceo-stats {
        justify-content: center;
    }
    .ceo-social {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ceo-content h2 {
        font-size: 28px;
    }
    .ceo-avatar {
        width: 160px;
        height: 160px;
    }
    .ceo-avatar i {
        font-size: 70px;
    }
    .ceo-ring {
        width: 160px;
        height: 160px;
    }
    .ceo-ring:nth-child(2) {
        width: 190px;
        height: 190px;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-number-large {
        font-size: 36px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-icon-box {
        margin: 0 auto;
    }
    .ceo-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-number-large {
        font-size: 28px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 60px 0 100px;
    background: #0a0a0f;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-subtitle {
    font-family: 'Rajdhani', sans-serif;
    color: #a0a0b0;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
    font-size: 18px;
}

.contact-item h4 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #a0a0b0;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item p {
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #00f0ff;
}

.contact-social h4 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0b0;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.contact-social .social-links a:hover {
    background: linear-gradient(45deg, #00f0ff, #7000ff);
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #c0c0d0;
    display: block;
    margin-bottom: 6px;
}

.contact-form .form-group label i {
    color: #00f0ff;
    margin-right: 8px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: 0.3s;
    outline: none;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #666;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #00f0ff;
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.form-message {
    margin-top: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 100, 0.1);
    border: 1px solid rgba(0, 255, 100, 0.2);
    color: #00ff64;
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff4444;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 25px;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
    .contact-form-wrapper h2 {
        font-size: 22px;
    }
    .contact-info h2 {
        font-size: 24px;
    }
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-social .social-links {
        justify-content: center;
    }
}