/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
   --primary-light: #ebfff3;
  --primary-light-hover: #e2feec;
  --primary-light-active: #c2fed8;
  --primary-normal: #3bfb82;
  --primary-dark: #2cbc62;
  --primary-dark-hover: #23974e;
  --primary-dark-active: #1b713a;
  --primary-darker: #15582e;
  --primary-dark-blue: #131b21;

  --secondary-light: #eaeff0;
  --secondary-light-hover: #dfe7e8;
  --secondary-light-active: #becdd0;
  --secondary-normal: #2c5f67;
  --secondary-normal-hover: #28565d;
  --secondary-normal-active: #234c52;
  --secondary-dark: #21474d;
  --secondary-dark-hover: #1a393e;
  --secondary-dark-active: #142b2e;
  --secondary-darker: #0f2124;

  --dark-50: #e8e8e9;
  --dark-100: #b8b9ba;
  --dark-200: #969799;
  --dark-300: #66686a;
  --dark-400: #494a4d;
  --dark-500: #1b1d21;
  --dark-600: #191a1e;
  --dark-700: #131517;
  --dark-800: #0f1012;
  --dark-900: #0b0c0e;
  --dark-gray: #161719;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--dark-50);
    background-color: var(--primary-dark-blue);
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

/* Age Restriction Banner */
.age-restriction {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #ffffff;
    padding: 0.8rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
    position: relative;
    z-index: 100;
    letter-spacing: 0.5px;
}

.age-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

/* Background Effects */
.bg-gradient {
    position: fixed;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 251, 130, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 251, 130, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 251, 130, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Header */
header {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(59, 251, 130, 0.3));
}

.header-cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-normal) 0%, var(--primary-dark) 100%);
    color: var(--dark-900);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 251, 130, 0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 251, 130, 0.5);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-hover) 100%);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 300px);
    padding: 40px 20px 80px;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(27, 29, 33, 0.9) 0%, rgba(19, 27, 33, 0.95) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 251, 130, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 251, 130, 0.1);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-normal) 0%, var(--primary-dark) 100%);
    color: var(--dark-900);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 251, 130, 0.3);
}

.content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content .intro {
    font-size: 1.4rem;
    color: var(--primary-light-hover);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 0 30px rgba(59, 251, 130, 0.3);
}

.content p {
    font-size: 1.1rem;
    color: var(--dark-100);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.content strong {
    color: var(--primary-normal);
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    margin: 3rem 0;
}

.features-grid h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

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

.feature-card {
    background: rgba(27, 29, 33, 0.6);
    border: 1px solid rgba(59, 251, 130, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-normal), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-normal);
    box-shadow: 0 10px 30px rgba(59, 251, 130, 0.2);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.feature-card:hover .icon {
    filter: grayscale(0);
}

.feature-card h3 {
    color: var(--primary-normal);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--dark-200);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3.5rem 0 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-normal) 0%, var(--primary-dark) 100%);
    color: var(--dark-900);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 251, 130, 0.4), 0 0 0 0 rgba(59, 251, 130, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 251, 130, 0.6), 0 0 60px rgba(59, 251, 130, 0.3);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 3rem 20px;
    text-align: center;
    border-top: 1px solid rgba(59, 251, 130, 0.2);
    position: relative;
    z-index: 10;
}

footer .copyright {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--dark-50);
}

footer .cnpj {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--dark-100);
    font-family: 'Courier New', monospace;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--primary-light-hover);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-normal);
    text-decoration: underline;
}

.footer-links .separator {
    color: var(--dark-200);
    margin: 0 0.8rem;
}

footer .disclaimer {
    font-size: 0.85rem;
    color: var(--dark-100);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-400);
}

footer .disclaimer strong {
    color: var(--dark-50);
}

/* Responsible Gaming Section */
.responsible-gaming {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 251, 130, 0.05) 0%, rgba(44, 188, 98, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 251, 130, 0.2);
}

.responsible-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-normal);
    margin-bottom: 1rem;
    text-align: center;
}

.responsible-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.responsible-links a {
    color: var(--primary-light-hover);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.responsible-links a:hover {
    color: var(--primary-normal);
    text-decoration: underline;
}

.responsible-links .separator {
    color: var(--dark-200);
    margin: 0 0.5rem;
}

.responsible-message {
    font-size: 0.85rem;
    color: var(--dark-100);
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .bg-gradient {
        width: 500px;
        height: 500px;
        top: -30%;
        right: -50%;
    }

    header {
        padding: 1.5rem 0;
    }

    .logo {
        max-width: 120px;
    }

    .header-cta-button {
        font-size: 0.85rem;
        padding: 0.7rem 1.3rem;
    }

    .content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content .intro {
        font-size: 1.15rem;
    }

    .content p {
        font-size: 1rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-grid h2 {
        font-size: 1.4rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1.1rem 2rem;
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links .separator {
        display: none;
    }

    .responsible-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .responsible-links .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .age-restriction {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .main-content {
        padding: 30px 15px 60px;
    }

    .content {
        padding: 1.5rem 1.2rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .content .intro {
        font-size: 1.05rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    footer {
        padding: 2rem 15px;
    }

    footer .disclaimer {
        font-size: 0.8rem;
    }
}
