:root {
    --bg-dark: #07070a;
    --red-main: #ff002b;
    --red-glow: rgba(255, 0, 43, 0.6);
    --text-white: #f5f5f5;
    --text-gray: #a3a3a3;
    --panel-bg: rgba(20, 20, 25, 0.8);
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Image Layer (Logo blurred) */
.bg-image-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('galpao.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(50px) brightness(0.25);
    z-index: -2;
    transform: scale(1.1);
}

/* Honeycomb Grid Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 0, 43, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 43, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.8;
}

.bg-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 80%);
}

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

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 80px 0 50px;
    gap: 50px;
}

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

.badge-gamer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--red-main);
    background: rgba(255, 0, 43, 0.1);
    padding: 5px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 0, 43, 0.3);
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 0, 43, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--red-main);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--red-glow); }
    70% { box-shadow: 0 0 0 10px rgba(255,0,43,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,43,0); }
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.glitch-red {
    color: var(--red-main);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 25px var(--red-glow);
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.subtitle strong {
    color: #fff;
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: var(--red-main);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-decoration: none;
    letter-spacing: 2px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--red-main);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    color: var(--red-main);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255,0,43,0.4);
}

/* Image */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--red-main);
    filter: blur(120px);
    opacity: 0.6;
    z-index: 0;
    border-radius: 50%;
    animation: slowPulse 4s infinite alternate;
}

@keyframes slowPulse {
    from { opacity: 0.4; transform: scale(0.9); }
    to { opacity: 0.7; transform: scale(1.1); }
}

.hero-logo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.6));
    border: 2px solid rgba(255, 0, 43, 0.4);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    transition: all 0.4s ease;
}

.hero-logo:hover {
    border-color: var(--red-main);
    filter: drop-shadow(0 25px 40px rgba(255,0,43,0.3));
    transform: translateY(-5px);
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px 0 100px;
}

.feature-card {
    background: var(--panel-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    position: relative;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(60px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-main), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    background: rgba(30, 30, 35, 0.95);
    border-color: rgba(255,0,43,0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,0,43,0.1);
    color: var(--red-main);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    border: 1px solid rgba(255,0,43,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .card-icon {
    background: var(--red-main);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
}

.card-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 20px;
}

.ig-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.ig-link:hover {
    background: var(--red-main);
    border-color: var(--red-main);
    color: #fff;
    transform: translateX(5px);
}

.btn-support {
    display: inline-block;
    color: var(--red-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--red-main);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.btn-support:hover {
    color: #fff;
    border-color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        gap: 30px;
    }
    
    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-wrapper {
        order: 1;
        width: 100%;
        max-width: 300px;
    }

    .image-glow {
        width: 200px;
        height: 200px;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.8rem;
    }
    .hero {
        padding-top: 40px;
    }
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}
