/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #cdccd5;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #cdccd5;
    font-weight: 600;
    font-size: 1.2rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop_shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.logo-text {
    color: #fff !important;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    color: #fff !important;
    text-shadow: 0 0 16px #fff, 0 0 32px #fff;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #cdccd5;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 16px #fff, 0 0 32px #fff;
}

.buy-btn {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #fff;
    box-shadow: 0 0 12px 2px #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px 6px #fff;
    border-color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #cdccd5;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: transparent !important;
    background: linear-gradient(90deg, #fff 0%, #ccc 15%, #666 65%, #222 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out;
    text-shadow: 0 0 1px #fff;
    filter: none !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cdccd5;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 0.2s both;
    text-shadow: 0 0 2px #fff, 0 0 4px #fff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 0.4s both;
}

.btn,
.btn-primary,
.btn-secondary {
    border-radius: 999px !important;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 12px 2px #fff;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 12px 2px #fff;
}

.btn-secondary {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 12px 2px #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    color: #fff !important;
    background: #000;
    border: 2px solid #fff;
    box-shadow: 0 0 24px 6px #fff;
}

.watch-link {
    color: #4a89d1;
    text-decoration: none;
    font-weight: 500;
    animation: slideUp 1s ease-out 0.6s both;
}

.watch-link:hover {
    text-decoration: underline;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.chevron-down {
    font-size: 2rem;
    color: #4a89d1;
    transform: rotate(90deg);
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: #000000;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #cdccd5;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cdccd5;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b39b3;
    margin-bottom: 0.5rem;
}

.plan-note {
    color: #888;
    font-size: 0.9rem;
}

.plan-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 12px 2px #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px 6px #fff;
    border-color: #fff;
}

.plan-features {
    list-style: none;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: #cdccd5;
}

.check {
    color: #fff;
    margin-right: 0.5rem;
    font-weight: bold;
}

.bullet {
    color: #4a89d1;
    margin-right: 0.5rem;
}

.plans-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
    background: #000000;
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a89d1;
    margin-bottom: 3rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 200px;
    background: rgba(30, 22, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: #4b39b3;
    box-shadow: 0 20px 40px rgba(75, 57, 179, 0.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.video .gallery-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4b39b3;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    text-align: center;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cdccd5;
    margin-bottom: 1rem;
}

.feature p {
    color: #888;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #cdccd5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4b39b3;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #cdccd5;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    filter: drop_shadow(0 0 6px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1);
    filter: drop_shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.footer-logo:hover .logo-text {
    color: #4b39b3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cdccd5;
}

/* Animations */

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

/* Login Page Styles */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: #000;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 255, 255, 0.2),
                0 0 30px rgba(255, 255, 255, 0.1);
    color: #fff;
}

.login-box h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.login-box form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    color: #cdccd5;
}

.login-box form input[type="text"],
.login-box form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #1a1a1a;
    color: #fff;
    box-sizing: border-box;
}

.login-box form button[type="submit"] {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-box form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.4),
                0 0 24px rgba(255, 255, 255, 0.3);
}
