@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --primary: #FFD700;
    /* Gold */
    --accent: #4A148C;
    /* Deep Purple */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --blur: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    left: -100px;
    animation: float 10s infinite alternate;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: -50px;
    right: -50px;
    animation: float 15s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 40px;
}

.highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FFA000);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.large {
    padding: 15px 35px;
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.sub-text {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(74, 20, 140, 0.5);
    border: 1px solid var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #d1c4e9;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.cta-group.vertical {
    flex-direction: column;
    align-items: flex-start;
    /* Aligned left to match hero text */
    gap: 15px;
}

.btn-primary.huge {
    padding: 20px 50px;
    font-size: 1.5rem;
    border-radius: 60px;
}

.legacy-link p {
    font-size: 0.85rem !important;
    color: var(--text-gray) !important;
    margin: 0 !important;
}

.legacy-link a {
    color: var(--text-gray);
    text-decoration: underline;
    transition: 0.3s;
}

.legacy-link a:hover {
    color: var(--primary);
}

/* Features */
.features {
    padding: 100px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.purple {
    background: rgba(142, 68, 173, 0.2);
    color: #9b59b6;
}

.gold {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.blue {
    background: rgba(41, 128, 185, 0.2);
    color: #3498db;
}

.green {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Credits Banner in Hero */
.credits-banner {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.credits-banner p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: var(--text-white);
}

.credits-banner strong {
    color: var(--primary);
}

/* About Section & Creators */
.about {
    padding: 100px 0;
    background: linear-gradient(to top, #000, var(--bg-dark));
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.creators-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.creator-card {
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    width: 350px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.creator-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.creator-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

.creator-img.aboura {
    background: linear-gradient(135deg, #FF6B6B, #EE5253);
    box-shadow: 0 10px 20px rgba(238, 82, 83, 0.3);
}

.creator-img.ibrahim {
    background: linear-gradient(135deg, #54a0ff, #2e86de);
    box-shadow: 0 10px 20px rgba(46, 134, 222, 0.3);
}

.creator-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.role {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.creator-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.glass-footer {
    border-top: 1px solid var(--glass-border);
    background: var(--bg-dark);
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 10px;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary);
}

.developer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .creators-grid {
        flex-direction: column;
        align-items: center;
    }

    .creator-card {
        width: 100%;
    }
}