:root {
    --valorant-red: #FF4655;
    --valorant-dark: #1F2326;
    --valorant-light: #ECE8E1;
    --valorant-grey: #768079;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--valorant-dark);
    color: var(--valorant-light);
    line-height: 1.6;
}

header {
    background-color: rgba(31, 35, 38, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 30px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: brightness(0) invert(0.8);
}

.premium-text {
    color: var(--valorant-red);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-logo {
    height: 80px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-logo {
    height: 24px;
    margin-bottom: 1rem;
    opacity: 0.5;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--valorant-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--valorant-red);
}

.premium-btn {
    background-color: var(--valorant-red);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.premium-btn:hover {
    background-color: #ff2d3f;
    color: var(--valorant-light) !important;
}

#heroVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    background: rgba(31, 35, 38, 0.7); /* Semi-transparent overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--valorant-grey);
    letter-spacing: 2px;
}

.subscription-tiers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.tier-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    max-width: 350px;
    min-height: 500px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--valorant-red);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-card h2 {
    color: var(--valorant-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.tier-card li {
    margin-bottom: 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.tier-card li::before {
    content: "•";
    color: var(--valorant-red);
    position: absolute;
    left: 0;
}

.subscribe-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--valorant-red);
    border: none;
    color: var(--valorant-light);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
}

.subscribe-btn:hover {
    background-color: #ff2d3f;
}

.features {
    padding: 4rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature h3 {
    color: var(--valorant-red);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature p {
    color: var(--valorant-grey);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--valorant-grey);
    font-size: 0.8rem;
}

@media (max-width: 968px) {
    .subscription-tiers {
        flex-direction: column;
        align-items: center;
    }

    .tier-card {
        width: 100%;
        max-width: 400px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Agents Page Styles */
.agents-hero {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(31, 35, 38, 0.9), rgba(31, 35, 38, 0.9)),
                url('https://images.contentstack.io/v3/assets/bltb6530b271fddd0b1/blt29d528fbc208fcda/5eb26f54402b8b4d13a56656/agent-background-generic.JPG');
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 4rem;
}

.agent-category {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.agent-category h2 {
    color: var(--valorant-red);
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-align: center;
}

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

.agent-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.agent-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.agent-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.agent-card h3 {
    color: var(--valorant-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.agent-card p {
    color: var(--valorant-grey);
    font-size: 0.9rem;
    line-height: 1.5;
}

.nav-links .active {
    color: var(--valorant-red);
}

@media (max-width: 768px) {
    .agents-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .agent-card img {
        height: 250px;
    }

    .agent-category {
        padding: 1rem;
    }
}
