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

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #0080ff;
}

/* Common styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #00bfff;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #00bfff, #0080ff);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
    background: linear-gradient(45deg, #0080ff, #00bfff);
}

.btn-outline {
    background: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
}

.btn-outline:hover {
    background: #00bfff;
    color: #000;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
    text-decoration: none;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: -5px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav a:hover {
    color: #00bfff;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00bfff;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #00bfff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section with Enhanced Water Effects */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    cursor: default;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(5, 20, 40, 0.95) 0%, 
            rgba(15, 40, 80, 0.9) 25%, 
            rgba(20, 60, 120, 0.85) 50%, 
            rgba(10, 35, 75, 0.9) 75%, 
            rgba(8, 25, 50, 0.95) 100%),
        radial-gradient(ellipse at center, rgba(0, 150, 255, 0.15) 0%, transparent 70%);
    background-size: 100% 100%, 200% 200%;
    animation: waveBackground 15s ease-in-out infinite;
    z-index: -2;
}

@keyframes waveBackground {
    0%, 100% {
        background-position: 0% 0%, 0% 0%;
    }
    25% {
        background-position: 0% 0%, 100% 0%;
    }
    50% {
        background-position: 0% 0%, 100% 100%;
    }
    75% {
        background-position: 0% 0%, 0% 100%;
    }
}

/* Enhanced Water Wave Layers */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 900px 250px at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 700px 180px at 80% 20%, rgba(135, 206, 250, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 1000px 200px at 50% 70%, rgba(255, 255, 255, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 800px 190px at 10% 80%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 1100px 280px at 90% 60%, rgba(135, 206, 250, 0.12) 0%, transparent 65%);
    animation: waterWaves1 18s ease-in-out infinite;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 600px 150px at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse 500px 120px at 70% 30%, rgba(0, 150, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 700px 170px at 60% 80%, rgba(135, 206, 250, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 550px 140px at 15% 60%, rgba(255, 255, 255, 0.11) 0%, transparent 48%),
        radial-gradient(ellipse 650px 160px at 85% 40%, rgba(0, 191, 255, 0.14) 0%, transparent 52%);
    animation: waterWaves2 22s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes waterWaves1 {
    0% { transform: translateX(0) translateY(0) scale(1); opacity: 0.7; }
    25% { transform: translateX(15px) translateY(-8px) scale(1.03); opacity: 0.9; }
    50% { transform: translateX(-8px) translateY(-12px) scale(0.97); opacity: 0.8; }
    75% { transform: translateX(-12px) translateY(6px) scale(1.02); opacity: 1; }
    100% { transform: translateX(0) translateY(0) scale(1); opacity: 0.7; }
}

@keyframes waterWaves2 {
    0% { transform: translateX(0) translateY(0) scale(1); opacity: 0.6; }
    25% { transform: translateX(-12px) translateY(-6px) scale(1.02); opacity: 0.8; }
    50% { transform: translateX(6px) translateY(-10px) scale(0.98); opacity: 0.7; }
    75% { transform: translateX(-6px) translateY(4px) scale(1.01); opacity: 0.9; }
    100% { transform: translateX(0) translateY(0) scale(1); opacity: 0.6; }
}

/* Enhanced hover effects */
.hero:hover .hero-background::before {
    animation-duration: 8s;
}

.hero:hover .hero-background::after {
    animation-duration: 10s;
}

/* Enhanced Rain Drops Effect */
.rain-drop {
    position: absolute;
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(135, 206, 250, 0.9) 20%, 
        rgba(0, 191, 255, 0.8) 50%, 
        rgba(0, 150, 255, 0.6) 80%, 
        transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    pointer-events: none;
    animation: rainFall linear infinite;
    box-shadow: 
        0 0 15px rgba(135, 206, 250, 0.8),
        0 0 30px rgba(0, 191, 255, 0.4);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.rain-drop::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(135, 206, 250, 0.5));
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

@keyframes rainFall {
    0% {
        transform: translateY(-100vh) rotate(10deg);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(10deg);
        opacity: 0;
    }
}

/* Enhanced Water Ripple Effects */
.water-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(135, 206, 250, 0.5) 15%, 
        rgba(0, 191, 255, 0.4) 30%, 
        rgba(0, 150, 255, 0.3) 50%, 
        rgba(0, 100, 200, 0.2) 70%, 
        transparent 100%);
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 40px rgba(135, 206, 250, 0.6),
        0 0 80px rgba(0, 191, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    pointer-events: none;
    animation: ripple 5s ease-out forwards;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        transform: scale(0);
        border-width: 4px;
    }
    20% {
        opacity: 0.9;
        border-width: 3px;
    }
    40% {
        opacity: 0.7;
        border-width: 2px;
    }
    70% {
        opacity: 0.4;
        border-width: 1px;
    }
    100% {
        width: var(--ripple-size, 400px);
        height: var(--ripple-size, 400px);
        opacity: 0;
        transform: scale(1);
        border-width: 0;
    }
}

/* Enhanced Floating Water Particles */
.water-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(135, 206, 250, 0.9) 30%, 
        rgba(0, 191, 255, 0.7) 60%, 
        rgba(0, 150, 255, 0.5) 80%, 
        transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(135, 206, 250, 0.8),
        0 0 40px rgba(0, 191, 255, 0.5),
        inset 0 0 8px rgba(255, 255, 255, 0.7);
}

.water-particle::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1.3);
    }
    100% {
        transform: translateY(-100vh) translateX(80px) scale(0.6);
        opacity: 0;
    }
}

/* Enhanced Mouse Trail Effect */
.mouse-trail {
    position: fixed;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(135, 206, 250, 0.9) 25%, 
        rgba(0, 191, 255, 0.7) 50%, 
        rgba(0, 150, 255, 0.5) 75%, 
        transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: mouseTrailFade 2s ease-out forwards;
    box-shadow: 
        0 0 25px rgba(135, 206, 250, 0.9),
        0 0 50px rgba(0, 191, 255, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes mouseTrailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    30% {
        opacity: 0.8;
        transform: scale(1.4);
    }
    70% {
        opacity: 0.4;
        transform: scale(1.8);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Water Bubble Effects */
.water-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.5), 
        rgba(135, 206, 250, 0.3), 
        rgba(0, 191, 255, 0.2));
    pointer-events: none;
    animation: bubble 10s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(135, 206, 250, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes bubble {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
        transform: translateY(85vh) scale(0.6);
    }
    85% {
        opacity: 0.8;
        transform: translateY(-5vh) scale(1.2);
    }
    100% {
        transform: translateY(-15vh) scale(0);
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #00bfff;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight {
    color: #00bfff;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
    background: linear-gradient(45deg, #00bfff, #0080ff);
    color: #000;
    font-size: 1.1rem;
    padding: 15px 35px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00bfff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #00bfff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.3));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00bfff;
    margin-bottom: 1rem;
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Steps Section */
.steps {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.steps-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00bfff, #0080ff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 2rem;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: rgba(0, 191, 255, 0.3);
    transform: translateX(-10px);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00bfff;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.step-details {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.steps-cta {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Stats Section */
.stats {
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    z-index: -2;
}

.stats-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.stats-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 191, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 191, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.4));
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00bfff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 500;
}

.stats-note {
    text-align: center;
    margin-top: 2rem;
}

.stats-note p {
    color: #888;
    font-size: 0.9rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text .section-title {
    text-align: right;
    margin-bottom: 2rem;
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(0, 191, 255, 0.3);
    transform: translateX(-5px);
}

.about-cta {
    display: flex;
    gap: 1rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 191, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    background: linear-gradient(45deg, #00bfff, #0080ff);
    color: #000;
    padding: 1.5rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    padding: 0.75rem 0;
    color: #ccc;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-content li:hover {
    color: #00bfff;
}

.visual-stats {
    display: flex;
    gap: 1rem;
}

.mini-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mini-stat:hover {
    border-color: rgba(0, 191, 255, 0.3);
    transform: translateY(-3px);
}

.mini-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00bfff;
    margin-bottom: 0.5rem;
}

.mini-label {
    font-size: 0.9rem;
    color: #ccc;
}

/* Footer */
.footer {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000 100%);
    z-index: -2;
}

.footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0;
}

.footer-section h4 {
    color: #00bfff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 30px;
    height: 2px;
    background: #00bfff;
}

.footer-logo h3 {
    color: #00bfff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.footer-logo p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #00bfff;
    padding-right: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 8px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.4);
    color: #00bfff;
    transform: translateX(-3px);
}

.social-link.discord:hover {
    border-color: #5865f2;
    color: #5865f2;
}

.social-link.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.social-link.instagram:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.server-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
}

.server-info p {
    color: #00bfff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.server-info code {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 191, 255, 0.2);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to left, transparent, #00bfff, transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00bfff;
}

/* Page Styles */
.page-section {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

.page-content h2 {
    color: #00bfff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.page-content h3 {
    color: #00bfff;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.page-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.page-content ul {
    color: #ccc;
    margin: 1rem 0 1rem 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Enhanced Job Card Styling */
.job-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.job-card:hover::before {
    left: 100%;
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.1);
}

.job-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.job-card:hover .job-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.job-card h3 {
    color: #00bfff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.job-card p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Rules List Styling */
.rules-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.rules-list > li {
    margin-bottom: 25px;
}

.rules-list strong {
    font-size: 20px;
    color: #00bfff;
    display: block;
    margin-bottom: 10px;
    border-right: 4px solid #00bfff;
    padding-right: 8px;
}

.rules-list ul {
    list-style: none;
    padding-right: 20px;
    margin: 0;
}

.rules-list ul li {
    background: #1a1a1a;
    margin-bottom: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #f1f1f1;
    position: relative;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.rules-list ul li::before {
    content: "•";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #00bfff;
}

.rules-list ul li:hover {
    background: #292929;
    transform: translateX(-4px);
    border-left-color: #00bfff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(0, 191, 255, 0.1);
    }

    .nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1.5rem auto;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-content {
        margin: 0;
    }
    
    .step-content:hover {
        transform: none;
    }
    
    .steps-cta {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .visual-stats {
        flex-direction: column;
    }
    
    .about-text .section-title {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
}