/* Sora's Pass - Gaming Liquid Glass Design */
:root {
    /* Cyberpunk Neon Palette */
    --neon-blue: #00d4ff;        /* Azul neon/gelo - contornos e letras */
    --space-blue: #0a1428;       /* Azul escuro/marinho - fundo espacial */
    --vibrant-pink: #ff0080;     /* Rosa vibrante - cabelo/accent */
    --electric-cyan: #00ffff;    /* Ciano elétrico - efeito de brilho */

    /* Principais */
    --primary: #00d4ff;
    --secondary: #00ffff;
    --accent: #ff0080;
    --accent-cyan: #00ffff;

    /* Background Colors */
    --bg-primary: #0a1428;
    --bg-secondary: #0f1b2e;
    --bg-tertiary: #1a2b4a;
    --nav-bg: rgba(10, 20, 40, 0.95);

    /* Glass & Card Colors */
    --glass-bg: rgba(0, 212, 255, 0.05);
    --glass-border: rgba(0, 255, 255, 0.1);
    --card-bg: rgba(15, 27, 46, 0.8);
    --card-hover: rgba(0, 212, 255, 0.1);

    /* Text Colors */
    --text-primary: #e6f7ff;
    --text-secondary: rgba(0, 212, 255, 0.9);
    --text-muted: rgba(0, 212, 255, 0.6);

    /* Effects */
    --glow-primary: 0 0 20px rgba(0, 212, 255, 0.4);
    --glow-secondary: 0 0 20px rgba(0, 255, 255, 0.4);
    --glow-accent: 0 0 20px rgba(255, 0, 128, 0.4);
    --glow-pink: 0 0 20px rgba(255, 0, 128, 0.5);

    /* Shadows */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Particle Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(0, 212, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 128, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
}

/* Navigation styles moved to components/navbar.css */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            rgba(108, 99, 255, 0.1) 0%,
            rgba(0, 180, 255, 0.1) 50%,
            rgba(255, 107, 157, 0.1) 100%),
        url('../img/sora_widescreen.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg,
            rgba(108, 99, 255, 0.15) 0%,
            rgba(0, 180, 255, 0.1) 35%,
            rgba(255, 107, 157, 0.1) 70%,
            rgba(10, 10, 15, 0.3) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 180, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 240, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(108, 99, 255, 0.3),
        inset 0 2px 20px rgba(255, 255, 255, 0.15),
        inset 0 -2px 20px rgba(108, 99, 255, 0.1);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) brightness(1);
    }
    100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) brightness(1.1);
    }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#total-games {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vibrant-pink);
    text-shadow: var(--glow-pink);
    animation: countPulse 2s ease-in-out infinite;
}

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

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50px;
    border: 2px solid transparent;
    box-shadow: var(--glow-primary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        var(--glow-primary),
        0 15px 35px rgba(108, 99, 255, 0.4);
    border-color: var(--glass-border);
}

/* Sections */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--glow-primary);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    z-index: -1;
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-table {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    position: relative;
}

.pricing-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    white-space: nowrap;
    vertical-align: middle;
}

.pricing-table th {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: var(--glow-primary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.pricing-table th:first-child {
    width: 25%;
}

.pricing-table th:nth-child(2) {
    width: 30%;
}

.pricing-table th:nth-child(3) {
    width: 20%;
}

.pricing-table th:nth-child(4) {
    width: 25%;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-table tbody tr:hover {
    background: var(--card-hover);
}

.pricing-table .featured-row {
    background: rgba(255, 107, 157, 0.1) !important;
    border: 2px solid var(--accent-cyan);
    box-shadow:
        var(--shadow-card),
        0 0 20px rgba(255, 107, 157, 0.3);
}

.popular-badge {
    display: inline-block;
    background: var(--accent-cyan);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table td {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-table td:nth-child(2) {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table td:nth-child(4) {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-info {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

/* Mobile pricing cards - hidden by default */
.mobile-pricing,
.mobile-consequences {
    display: none;
}

.pricing-info p {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
    text-align: justify;
}

.pricing-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Rules Section */
.rules-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.rules-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.rules-section:hover::before {
    transform: scaleX(1);
}

.rules-section:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.rules-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.rules-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.rules-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    z-index: -1;
    animation: iconRotate 6s linear infinite;
}

.rules-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 1;
}

.rules-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Cores específicas por tipo de regra */
.access-icon::before {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

.access-icon::after {
    background: linear-gradient(135deg, var(--secondary), var(--accent-cyan));
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        0 4px 16px rgba(0, 180, 255, 0.4);
}

.conflict-icon::before {
    background: linear-gradient(45deg, var(--vibrant-pink), var(--accent-cyan));
}

.conflict-icon::after {
    background: linear-gradient(135deg, var(--vibrant-pink), var(--accent-cyan));
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        0 4px 16px rgba(255, 0, 128, 0.4);
}

.prohibition-icon::before {
    background: linear-gradient(45deg, var(--vibrant-pink), var(--primary));
}

.prohibition-icon::after {
    background: linear-gradient(135deg, var(--vibrant-pink), var(--primary));
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        0 4px 16px rgba(255, 0, 128, 0.5);
}

.check-list li,
.conflict-list li,
.x-list li {
    margin: 1.2rem 0;
    padding-left: 2.5rem;
    position: relative;
    list-style: none;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--accent-cyan));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 180, 255, 0.3);
}

.conflict-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffa500, #ff6b35);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.x-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

/* Consequences Table */
.consequences-table {
    margin-top: 4rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow:
        var(--shadow-card),
        0 0 30px rgba(255, 0, 128, 0.1);
    position: relative;
}

.consequences-table::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.consequences-table h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    text-align: left;
}

.consequences-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-inner-bg, rgba(26, 43, 74, 0.6));
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.consequences-table th,
.consequences-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    line-height: 1.6;
}

.consequences-table th {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.consequences-table td {
    color: var(--text-secondary);
    font-size: 1rem;
    background: rgba(15, 27, 46, 0.4);
}

.consequences-table tr:hover td {
    background: rgba(0, 212, 255, 0.05);
    color: var(--text-primary);
}

/* Payment Section */
.payment-policy {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: var(--shadow-card);
}

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

.payment-method-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

.payment-method-card .icon-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.payment-method-card .icon-container svg {
    width: 30px;
    height: 30px;
    color: white;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.payment-method-card .icon-container img {
    width: 35px;
    height: 35px;
    z-index: 2;
    position: relative;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* PIX específico - mantém cores originais */
.pix-icon img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(2);
}

.payment-method-card .icon-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    z-index: -1;
    animation: iconRotate 8s linear infinite;
}

.payment-method-card .icon-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 1;
}

/* Cores específicas por método de pagamento */
.pix-icon::before {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.pix-icon::after {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        0 4px 16px rgba(0, 212, 255, 0.4);
}

.card-icon::before {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.card-icon::after {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        0 4px 16px rgba(108, 99, 255, 0.4);
}

.payment-deadline,
.payment-warning {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--secondary);
}

.payment-warning {
    border-left-color: #ff4757;
}

.payment-deadline h4,
.payment-warning h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.payment-deadline ul,
.payment-warning ul {
    list-style: none;
    padding: 0;
}

.payment-deadline li,
.payment-warning li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1rem;
}

.payment-deadline li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.payment-warning li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.contact-section > p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.contact-card .icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-card .icon-container svg {
    width: 45px;
    height: 45px;
    color: white;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contact-card .icon-container img {
    width: 130px;
    height: 130px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contact-card .icon-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    z-index: -1;
    animation: iconRotate 10s linear infinite;
}

.contact-card .icon-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 1;
}

/* Cores específicas por plataforma */
.discord-icon::before {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.discord-icon::after {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        0 4px 16px rgba(0, 212, 255, 0.4);
}

.steam-icon::before {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.steam-icon::after {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        0 4px 16px rgba(0, 212, 255, 0.4);
}

.contact-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-value a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-value a:hover {
    color: var(--secondary);
    text-shadow: var(--glow-secondary);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.developer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.developer-credit a {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.developer-credit a:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.4);
    transform: translateY(-1px);
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vibrant-pink), var(--accent-cyan));
    transition: width 0.3s ease;
}

.developer-credit a:hover::after {
    width: 100%;
}

/* Menu Toggle styles moved to components/navbar.css */

/* Responsive Design */
@media (max-width: 1024px) {
    .rules-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .rules-section {
        padding: 2rem 1.5rem;
    }

    .rules-icon {
        width: 70px;
        height: 70px;
    }

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

@media (max-width: 768px) {
    /* Nav responsive styles moved to components/navbar.css */

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    #total-games {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-info {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .pricing-info p {
        margin: 1rem 0;
        line-height: 1.6;
        font-size: 0.95rem;
        text-align: left;
    }

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

    .rules-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card,
    .rules-section {
        padding: 2rem 1.5rem;
    }

    .pricing-table {
        margin: 2rem 0;
        overflow: visible;
    }

    .pricing-table table {
        display: none;
    }

    .mobile-pricing {
        display: block;
        gap: 1.5rem;
    }

    .mobile-pricing-card {
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 1.5rem;
        box-shadow: var(--shadow-card);
        transition: all 0.3s ease;
        position: relative;
    }

    .mobile-pricing-card.featured {
        background: rgba(255, 107, 157, 0.1);
        border: 2px solid var(--accent-cyan);
        box-shadow:
            var(--shadow-card),
            0 0 20px rgba(255, 107, 157, 0.3);
    }

    .mobile-pricing-card .plan-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
        text-align: center;
    }

    .mobile-pricing-card .plan-price {
        font-size: 2rem;
        font-weight: 700;
        color: var(--secondary);
        text-align: center;
        margin-bottom: 1rem;
    }

    .mobile-pricing-card .plan-details {
        display: grid;
        gap: 0.8rem;
    }

    .mobile-pricing-card .plan-detail {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .mobile-pricing-card .plan-detail:last-child {
        border-bottom: none;
    }

    .mobile-pricing-card .plan-detail-label {
        color: var(--text-secondary);
        font-weight: 500;
    }

    .mobile-pricing-card .plan-detail-value {
        color: var(--text-primary);
        font-weight: 600;
    }

    .mobile-pricing-card .discount-value {
        color: var(--accent-cyan);
        font-weight: 700;
    }

    .consequences-table {
        margin: 2rem 0;
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .consequences-table::before {
        display: none;
    }

    .consequences-table h3 {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }

    .consequences-table h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transform: translateX(-50%);
    }

    .consequences-table table {
        display: none;
    }

    .mobile-consequences {
        display: block;
        gap: 1.5rem;
    }

    .mobile-consequence-card {
        background: linear-gradient(135deg, var(--card-bg), rgba(26, 43, 74, 0.8));
        backdrop-filter: blur(15px);
        border: none;
        border-radius: 0;
        padding: 0;
        margin-bottom: 1.5rem;
        box-shadow: none;
        transition: all 0.4s ease;
        position: relative;
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
        overflow: hidden;
    }

    .mobile-consequence-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
        z-index: -1;
        opacity: 0.2;
        transition: opacity 0.3s ease;
    }

    /* Cores específicas por severidade */
    .mobile-consequence-card.severity-high::before {
        background: linear-gradient(135deg, #ff4757, var(--vibrant-pink));
        opacity: 0.25;
    }

    .mobile-consequence-card.severity-medium::before {
        background: linear-gradient(135deg, #ffa502, var(--vibrant-pink));
        opacity: 0.22;
    }

    .mobile-consequence-card:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(255, 0, 128, 0.3);
    }

    .mobile-consequence-card:hover::before {
        opacity: 0.5;
    }

    .mobile-consequence-card-content {
        padding: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .mobile-consequence-card .infraction-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        position: relative;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .mobile-consequence-card .infraction-title::before {
        content: '';
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
        border-radius: 2px;
        flex-shrink: 0;
    }

    .mobile-consequence-card.severity-high .infraction-title::before {
        background: linear-gradient(135deg, #ff4757, var(--vibrant-pink));
    }

    .mobile-consequence-card.severity-medium .infraction-title::before {
        background: linear-gradient(135deg, #ffa502, var(--vibrant-pink));
    }

    .mobile-consequence-card::after {
        content: '';
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent-cyan);
        box-shadow: 0 0 10px var(--accent-cyan);
        animation: severityPulse 2s infinite;
        z-index: 3;
    }

    .mobile-consequence-card.severity-high::after {
        background: #ff4757;
        box-shadow: 0 0 10px #ff4757;
    }

    .mobile-consequence-card.severity-medium::after {
        background: #ffa502;
        box-shadow: 0 0 10px #ffa502;
    }

    @keyframes severityPulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .mobile-consequence-card .consequence-action {
        color: var(--text-primary);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(0, 212, 255, 0.12));
        border: none;
        border-radius: 0;
        text-align: center;
        line-height: 1.3;
        margin-top: 1rem;
        position: relative;
        clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
        backdrop-filter: blur(10px);
    }

    .mobile-consequence-card .consequence-action::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
    }

    .mobile-consequence-card.severity-high .consequence-action {
        background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(255, 71, 87, 0.2));
    }

    .mobile-consequence-card.severity-high .consequence-action::before {
        background: linear-gradient(135deg, var(--vibrant-pink), #ff4757);
    }

    .mobile-consequence-card.severity-medium .consequence-action {
        background: linear-gradient(135deg, rgba(255, 0, 128, 0.15), rgba(255, 165, 2, 0.15));
    }

    .mobile-consequence-card.severity-medium .consequence-action::before {
        background: linear-gradient(135deg, var(--vibrant-pink), #ffa502);
    }

    .popular-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.5rem;
        margin-left: 0.3rem;
    }

    .payment-methods,
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payment-policy {
        padding: 2rem;
        margin: 2rem 0;
    }

    .payment-deadline,
    .payment-warning {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .payment-deadline h4,
    .payment-warning h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .payment-deadline li,
    .payment-warning li {
        font-size: 0.9rem;
        margin: 0.8rem 0;
        padding-left: 1.5rem;
        line-height: 1.5;
        text-align: left;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 3rem 0;
    }

    .hero-content {
        margin: 1rem;
        padding: 1.5rem 1rem;
        backdrop-filter: blur(10px);
        animation: none;
    }

    .hero-title {
        animation: none;
    }
}

/* Mobile Small Screens */
@media (max-width: 480px) {
    .pricing-info {
        margin-top: 1.5rem;
        padding: 1rem;
        border-radius: 8px;
    }

    .pricing-info p {
        margin: 0.75rem 0;
        line-height: 1.5;
        font-size: 0.9rem;
    }

    .section {
        padding: 3rem 0.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--primary);
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary), var(--accent-cyan));
}