:root {
    --bg-dark: #0f1013;
    --bg-panel: #1f2326;
    --valorant-red: #ff4655;
    --valorant-red-hover: #e03e4b;
    --text-primary: #ece8e1;
    --text-muted: #8b979f;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(31, 35, 38, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glow Effects */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

.glow-1 {
    top: -100px;
    left: -200px;
    background: var(--valorant-red);
}

.glow-2 {
    bottom: 20%;
    right: -200px;
    background: #4facfe;
    opacity: 0.1;
}

/* Typography */
.text-accent {
    color: var(--valorant-red);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(15, 16, 19, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: var(--valorant-red);
    border-radius: 4px;
    transform: rotate(45deg);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--valorant-red);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--valorant-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--valorant-red);
    color: var(--valorant-red);
}

.btn-outline:hover {
    background: var(--valorant-red);
    color: white;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 10% 60px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 70, 85, 0.1);
    color: var(--valorant-red);
    border: 1px solid rgba(255, 70, 85, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.mockup-card {
    width: 100%;
    max-width: 450px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-card:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.mockup-header {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: var(--glass-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}
.dot:nth-child(1) { background: #ff5f56; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #27c93f; }

.mockup-body {
    padding: 24px;
}

.mockup-stat-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
}

.mockup-stat .label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.mockup-stat .value {
    font-size: 24px;
    font-weight: 800;
}
.mockup-stat .value.accent {
    color: #4ade80;
}

.mockup-match {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    border-left: 4px solid transparent;
}

.mockup-match.win {
    border-left-color: #4ade80;
}
.mockup-match.loss {
    border-left-color: var(--valorant-red);
}

/* Showcase Section */
.showcase-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, rgba(15,16,19,0.95), rgba(31,35,38,0.8));
    border-bottom: var(--glass-border);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 45px rgba(255, 70, 85, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.5), transparent);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
    color: var(--valorant-red);
}

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features-section {
    padding: 100px 10%;
    background: linear-gradient(to bottom, transparent, rgba(31, 35, 38, 0.3));
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 60px;
}

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

.feature-card {
    padding: 30px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    background: rgba(255, 70, 85, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* About Section */
.about-section {
    margin: 0 10% 100px;
    padding: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(31,35,38,0.8), rgba(15,16,19,0.9));
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-content p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
footer {
    padding: 40px 10%;
    border-top: var(--glass-border);
    background: rgba(0,0,0,0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 12px;
    max-width: 800px;
}

.copyright {
    color: #555;
    font-size: 12px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    .hero-actions {
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
}
