:root {
    --valorant-red: #ff4655;
    --valorant-red-glow: rgba(255, 70, 85, 0.5);
    --valorant-dark: #0b101a;
    --valorant-darker: #06090f;
    --valorant-light: #f8f9fa;
    --valorant-accent: #7688c5;
    --valorant-card: rgba(18, 25, 38, 0.6);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Background Gradients for Modern Feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 15% 50%, rgba(118, 136, 197, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(255, 70, 85, 0.06) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles with Glassmorphism */
header {
    background: rgba(6, 9, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    background: rgba(6, 9, 15, 0.85);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 70, 85, 0.3));
    border-radius: 4px;
}

.logo .site-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    margin-left: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: #fff;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--valorant-red);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--valorant-red-glow);
}

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

.nav-btns {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
}

.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--valorant-red);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 70, 85, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover {
    background: #ff5c6a;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255, 70, 85, 0.5), 0 0 15px rgba(255, 70, 85, 0.4) inset;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Video Background Styling */
.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.video-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(6, 9, 15, 0.3) 0%, rgba(6, 9, 15, 0.8) 100%);
  z-index: 0;
}

.video-overlay {
  position: relative;
  z-index: 1;
  padding: 40px;
  max-width: 900px;
  animation: fadeUpIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeUpIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.video-overlay h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-overlay h1 span {
    color: var(--valorant-red);
    position: relative;
    display: inline-block;
}

.video-overlay h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 5px;
    left: 0;
    background: var(--valorant-red-glow);
    z-index: -1;
    filter: blur(10px);
}

.video-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Valorant Style Primary Button */
.btn-val-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--valorant-red);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    box-shadow: 0 6px 18px rgba(255, 70, 85, 0.15);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1),
                filter 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-val-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(255, 70, 85, 0.4);
    filter: brightness(1.1);
}

.btn-val-primary:active {
    transform: scale(0.97);
    transition-duration: 100ms;
}

/* Valorant Style Secondary Button (Outline with sweep) */
.btn-val-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid #ece8e1;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-val-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ece8e1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.btn-val-secondary:hover::before {
    transform: scaleX(1);
}

.btn-val-secondary .btn-text {
    position: relative;
    z-index: 1;
    transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-val-secondary:hover .btn-text {
    color: var(--valorant-darker);
}

.btn-val-secondary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(255, 255, 255, 0.15);
}

.btn-val-secondary:active {
    transform: scale(0.97);
    transition-duration: 100ms;
}

/* Sections Global */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    background: var(--valorant-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--valorant-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 70, 85, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,70,85,0.2) 0%, rgba(255,70,85,0.05) 100%);
    border-radius: 14px;
    color: var(--valorant-red);
    font-size: 28px;
    transition: var(--transition);
    border: 1px solid rgba(255, 70, 85, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--valorant-red);
    color: white;
    box-shadow: 0 0 20px var(--valorant-red-glow);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    background: var(--valorant-darker);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

@media (min-width: 900px) {
    .steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255,70,85,0.5), transparent);
        z-index: 1;
    }
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--valorant-card);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(255,70,85,0.2);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--valorant-darker);
    border: 2px solid var(--valorant-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--valorant-red);
    box-shadow: 0 0 20px rgba(255,70,85,0.15);
}

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.step p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background: var(--valorant-dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--valorant-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 70, 85, 0.1);
    font-family: 'Outfit', serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--valorant-red), #ff8c95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(255,70,85,0.3);
}

.author-info h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* FAQ Section */
.faq {
    position: relative;
    background: 
        linear-gradient(rgba(10, 18, 28, 0.85), 
        rgba(10, 18, 28, 0.85)),
        url('bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: var(--valorant-card);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--valorant-red);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    color: rgba(255, 255, 255, 0.7);
}

.faq-item.active {
    border-color: rgba(255,70,85,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
    opacity: 1;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: 
        linear-gradient(rgba(10, 18, 28, 0.85), 
        rgba(10, 18, 28, 0.85)),
        url('bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,70,85,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(18, 25, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Early Access Announcement Banner */
.early-access-notice {
    margin: 22px auto 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.1) 0%, rgba(118, 136, 197, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px !important;
    font-weight: 400 !important;
    color: #e2e8f0 !important;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 70, 85, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.early-access-notice:hover {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.15) 0%, rgba(118, 136, 197, 0.18) 100%);
    border-color: rgba(255, 70, 85, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 70, 85, 0.15);
}

.early-access-notice .highlight-free {
    color: #00ff88;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.25);
}

/* Footer */
footer {
    background: #04070a;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 28px;
    color: var(--valorant-red);
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 22px;
    background: linear-gradient(to right, #ff4655, #ff8c95);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-col p {
    margin-bottom: 25px;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--valorant-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,70,85,0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 10px;
    color: var(--valorant-red);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-10px);
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(6, 9, 15, 0.95);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    nav.active ul {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    .video-overlay h1 {
        font-size: 2.5rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .early-access-notice {
        font-size: 12px !important;
        padding: 6px 14px;
        margin-top: 16px !important;
        line-height: 1.4;
        border-radius: 20px;
    }
}
