
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Orbitron", sans-serif;
}

body {
    color: #fff;
    overflow-x: hidden;
}

:root {
    --neon-yellow: #ffee00; 
    --yellow-hover: #cccc00; 
    --text-light: #ccc;
    --text-dark: #000;
}

/* 🔹 Video Background */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5); 
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    color: var(--neon-yellow);
    letter-spacing: 2px;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
    font-weight: 500;
}

.nav a:hover,
.nav a.active {
    color: var(--neon-yellow);
}


.packages-section {
    text-align: center;
    padding: 140px 20px 60px; 
}

.title {
    font-size: 2.5rem;
    color: var(--neon-yellow);
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1rem;
}

.packages-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}


.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    width: 280px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 238, 0, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 238, 0, 0.5);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.package-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 0; 
    
    height: 120px; 
    overflow: hidden;
    transition: height 0.3s ease-out; 
}


.package-card ul.expanded {
    height: auto;
}

.package-card li {
    margin: 5px 0;
    color: #fff;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
}

.price {
    font-size: 2rem;
    margin: 15px 0;
    color: var(--neon-yellow);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: var(--text-dark);
    background: var(--neon-yellow);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: var(--yellow-hover);
}


.toggle-features-btn {
    display: block; 
    width: 100%; 
    margin: -15px 0 10px 0;
    padding: 5px 10px;
    background: transparent;
    color: var(--neon-yellow);
    border: 1px solid var(--neon-yellow);
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.3s;
    font-family: "Orbitron", sans-serif;
}

.toggle-features-btn:hover {
    background: rgba(255, 238, 0, 0.1);
    color: var(--yellow-hover);
    border-color: var(--yellow-hover);
}


.basic {
    border-color: #00ff99;
}

.standard {
    border-color: #ffcc00;
}

.pro {
    border-color: #ff3366;
}

.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    color: var(--text-light);
}