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

:root {
    --primary-color: #00ff41;
    --secondary-color: #ff006e;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-blue: #00d9ff;
    --accent-purple: #9d00ff;
    --glow-color: rgba(0, 255, 65, 0.5);
    --solo-blue: #00b8ff;
    --solo-blue-bright: #00d4ff;
    --solo-blue-dark: #0066cc;
    --solo-blue-glow: rgba(0, 184, 255, 0.9);
    --solo-bg-dark: rgba(5, 15, 30, 0.95);
    --solo-bg-pattern: rgba(0, 184, 255, 0.05);
}

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

/* Modal de Solo Leveling - Estilo Fiel ao Anime */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.8s ease-in;
    overflow: hidden;
}

.modal-content {
    position: relative;
    background: var(--solo-bg-dark);
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 650px;
    width: 85%;
    animation: slideUp 0.8s ease-out;
    overflow: visible;
    box-shadow: none;
}

/* Bordas estilo circuito holográfico - ao redor da caixa */
.circuit-border {
    position: absolute;
    background: var(--solo-blue);
    box-shadow:
        0 0 15px var(--solo-blue-glow),
        0 0 30px var(--solo-blue-glow),
        0 0 45px var(--solo-blue-glow);
    z-index: 1;
    animation: circuitFlow 2s ease-in-out infinite;
}

.circuit-top {
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: 2px;
}

.circuit-right {
    top: -2px;
    right: -2px;
    width: 2px;
    height: calc(100% + 4px);
}

.circuit-bottom {
    bottom: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: 2px;
}

.circuit-left {
    top: -2px;
    left: -2px;
    width: 2px;
    height: calc(100% + 4px);
}

/* Container interno com padding */
.system-message {
    position: relative;
    z-index: 2;
    background: var(--solo-bg-dark);
    padding: 45px 50px;
    overflow: hidden;
}

/* Padrões digitais no fundo - mais sutis e abstratos */
.digital-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, var(--solo-bg-pattern) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, var(--solo-bg-pattern) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, var(--solo-bg-pattern) 25%, transparent 50%, var(--solo-bg-pattern) 75%, transparent 100%);
    opacity: 0.4;
    animation: patternMove 15s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Header da Notificação */
.notification-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 45px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 184, 255, 0.2);
}

.notification-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: var(--solo-blue);
    box-shadow:
        0 0 25px var(--solo-blue-glow),
        0 0 50px var(--solo-blue-glow),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2.5s ease-in-out infinite;
    position: relative;
}

.notification-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent 70%);
    pointer-events: none;
}

.exclamation {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.notification-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--solo-blue);
    text-shadow: 0 0 8px var(--solo-blue-glow);
    letter-spacing: 3px;
    padding: 10px 22px;
    border: 2px solid var(--solo-blue);
    background: transparent;
    box-shadow:
        0 0 10px rgba(0, 184, 255, 0.4),
        inset 0 0 10px rgba(0, 184, 255, 0.1);
    font-family: 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

.message-content {
    margin: 45px 0;
    text-align: left;
}

.notification-message {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    margin-bottom: 35px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: 0.3px;
}

.player-text {
    font-weight: 700;
    color: var(--solo-blue-bright);
    text-shadow:
        0 0 12px var(--solo-blue-glow),
        0 0 24px var(--solo-blue-glow),
        0 0 36px var(--solo-blue-glow);
    font-size: 1.15em;
    animation: playerGlow 2.5s ease-in-out infinite;
    letter-spacing: 0.5px;
}

.warning-text {
    font-size: 14px;
    color: #ffaa00;
    margin-top: 30px;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 170, 0, 0.6);
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 500;
}

#countdown {
    font-size: 16px;
    font-weight: 700;
    color: #ff6666;
    text-shadow: 0 0 12px rgba(255, 102, 102, 0.9);
    animation: countdownPulse 1s ease-in-out infinite;
}

.modal-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 184, 255, 0.2);
}

.btn-accept,
.btn-reject {
    padding: 14px 45px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn-accept {
    color: var(--solo-blue);
    border-color: var(--solo-blue);
    box-shadow:
        0 0 15px rgba(0, 184, 255, 0.4),
        inset 0 0 15px rgba(0, 184, 255, 0.1);
}

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

.btn-accept:hover {
    background: rgba(0, 184, 255, 0.15);
    box-shadow:
        0 0 25px var(--solo-blue-glow),
        inset 0 0 20px rgba(0, 184, 255, 0.2);
    transform: translateY(-2px);
}

.btn-accept:hover::before {
    left: 100%;
}

.btn-reject {
    color: #cc6666;
    border-color: #cc6666;
    box-shadow:
        0 0 12px rgba(204, 102, 102, 0.4),
        inset 0 0 12px rgba(204, 102, 102, 0.1);
}

.btn-reject::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 102, 102, 0.3), transparent);
    transition: left 0.6s;
}

.btn-reject:hover {
    background: rgba(204, 102, 102, 0.15);
    color: #ff8888;
    box-shadow:
        0 0 20px rgba(204, 102, 102, 0.6),
        inset 0 0 18px rgba(204, 102, 102, 0.2);
    transform: translateY(-2px);
}

.btn-reject:hover::before {
    left: 100%;
}

/* Overlay de Punição */
.punishment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: shake 0.5s;
}

.punishment-content {
    text-align: center;
    padding: 40px;
}

.punishment-content h1 {
    font-size: 3rem;
    color: #ff6666;
    text-shadow: 0 0 20px rgba(255, 102, 102, 0.8);
    margin-bottom: 20px;
    animation: glitch 0.3s infinite;
}

.punishment-content p {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.btn-continue {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: transparent;
    color: var(--solo-blue);
    border: 2px solid var(--solo-blue);
    border-radius: 0;
    cursor: pointer;
    font-family: 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow:
        0 0 15px rgba(0, 184, 255, 0.4),
        inset 0 0 15px rgba(0, 184, 255, 0.1);
}

.btn-continue:hover {
    background: rgba(0, 184, 255, 0.15);
    color: var(--solo-blue-bright);
    box-shadow:
        0 0 25px var(--solo-blue-glow),
        inset 0 0 20px rgba(0, 184, 255, 0.2);
}

/* Conteúdo Principal */
.main-content {
    min-height: 100vh;
}

.hidden {
    display: none !important;
}

/* Header - Oculto no linktree */
.header {
    display: none;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.glitch {
    position: relative;
    color: var(--solo-blue);
    text-shadow: 0 0 10px var(--solo-blue-glow);
    animation: glitch-text 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--solo-blue-bright);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
    opacity: 0.8;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 rgba(0, 184, 255, 0.6);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 1s infinite linear alternate-reverse;
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--solo-blue);
    box-shadow: 0 0 8px var(--solo-blue-glow);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--solo-blue);
    text-shadow: 0 0 10px var(--solo-blue-glow);
}

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

/* Simple Links - Estilo WebSec Brasil com tema Solo Leveling */
.simple-links {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    background: #0a0a0f;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.simple-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 30%, rgba(0, 184, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.logo-image-container {
    margin-bottom: 0;
}

.logo-image {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    object-fit: cover;
    border: 3px solid var(--solo-blue);
    box-shadow:
        0 0 20px var(--solo-blue-glow),
        0 0 40px rgba(0, 184, 255, 0.3);
    display: block;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0;
}

/* Social Icons Top */
.social-icons-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 1.875rem;
    position: relative;
    z-index: 1;
}

.icon-link {
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    transform: scale(1.1);
    color: var(--solo-blue);
    filter: drop-shadow(0 0 8px var(--solo-blue-glow));
}

/* Service Cards */
.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
    margin-top: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(15, 15, 20, 0.6);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 150px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 184, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--solo-blue);
    box-shadow: 0 0 20px rgba(0, 184, 255, 0.4);
}

.service-card-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 10px;
    background: rgba(15, 15, 20, 0.6);
    position: relative;
}

.service-badge {
    display: inline-block;
    padding: 3px 8px;
    background: var(--solo-blue);
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    border-radius: 5px;
    margin: 5px 10px;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 184, 255, 0.3);
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    padding: 10px 10px 5px 10px;
    text-align: left;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.service-description {
    font-size: 12px;
    color: #cccccc;
    margin: 0;
    padding: 0 10px 15px 10px;
    text-align: left;
    line-height: 1.4;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
    width: 100%;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.link-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid rgba(139, 92, 246, 0.15);
    border-bottom-width: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(15, 15, 20, 0.6);
}

.link-card:hover {
    transform: scale(1.02);
    border-color: var(--solo-blue);
    box-shadow: 0 0 20px rgba(0, 184, 255, 0.3);
}

.link-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.link-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(0, 184, 255, 0.1);
    border: 1px solid rgba(0, 184, 255, 0.3);
}

.link-info {
    flex: 1;
}

.link-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.link-description {
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 384px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.link-arrow {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.background-blur {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(140.26% 100% at 50% 0%, rgba(0, 184, 255, 0.08) 0%, rgba(0, 184, 255, 0.05) 30%, rgba(0, 184, 255, 0.02) 50%, transparent 70%);
    -webkit-mask: radial-gradient(140.26% 100% at 50% 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.01) 64.72%, rgba(0, 0, 0, 0.03) 68.55%, rgba(0, 0, 0, 0.07) 71.65%, rgba(0, 0, 0, 0.12) 74.13%, rgba(0, 0, 0, 0.18) 76%, rgba(0, 0, 0, 0.25) 77.48%, rgba(0, 0, 0, 0.33) 78.58%, rgba(0, 0, 0, 0.42) 79.32%, rgba(0, 0, 0, 0.52) 79.7%, rgba(0, 0, 0, 0.63) 79.73%, rgba(0, 0, 0, 0.74) 79.42%, rgba(0, 0, 0, 0.85) 78.78%, rgba(0, 0, 0, 0.95) 77.82%, rgba(0, 0, 0, 1) 76.55%);
    mask: radial-gradient(140.26% 100% at 50% 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.01) 64.72%, rgba(0, 0, 0, 0.03) 68.55%, rgba(0, 0, 0, 0.07) 71.65%, rgba(0, 0, 0, 0.12) 74.13%, rgba(0, 0, 0, 0.18) 76%, rgba(0, 0, 0, 0.25) 77.48%, rgba(0, 0, 0, 0.33) 78.58%, rgba(0, 0, 0, 0.42) 79.32%, rgba(0, 0, 0, 0.52) 79.7%, rgba(0, 0, 0, 0.63) 79.73%, rgba(0, 0, 0, 0.74) 79.42%, rgba(0, 0, 0, 0.85) 78.78%, rgba(0, 0, 0, 0.95) 77.82%, rgba(0, 0, 0, 1) 76.55%);
    pointer-events: none;
    z-index: 0;
}


/* Player Status Section - Estilo Solo Leveling */
.player-status {
    padding: 60px 0;
    background: #0a0a0f;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.player-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 184, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 184, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.status-panel {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    background: var(--solo-bg-dark);
    border: 2px solid var(--solo-blue);
    padding: 40px;
    box-shadow:
        0 0 30px var(--solo-blue-glow),
        inset 0 0 30px rgba(0, 184, 255, 0.05);
    animation: slideUp 0.8s ease-out;
}

.status-panel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--solo-blue);
    box-shadow:
        0 0 20px var(--solo-blue-glow),
        0 0 40px var(--solo-blue-glow);
    z-index: -1;
    animation: circuitFlow 2s ease-in-out infinite;
    opacity: 0.3;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--solo-blue);
}

.status-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--solo-blue);
    text-shadow: 0 0 15px var(--solo-blue-glow);
    letter-spacing: 3px;
}

.status-level {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.level-number {
    color: var(--solo-blue-bright);
    text-shadow: 0 0 15px var(--solo-blue-glow);
    font-size: 1.6rem;
    font-weight: 700;
}

.player-info {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 184, 255, 0.05);
    border: 1px solid rgba(0, 184, 255, 0.2);
}

.player-name,
.player-class {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.player-name:last-child,
.player-class:last-child {
    margin-bottom: 0;
}

.name-label,
.class-label {
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 80px;
}

.name-value,
.class-value {
    color: var(--solo-blue);
    text-shadow: 0 0 10px var(--solo-blue-glow);
    font-weight: 600;
    font-size: 1.2rem;
}

.class-value {
    color: var(--solo-blue-bright);
}

/* Barra de XP */
.xp-bar-container {
    margin-bottom: 40px;
}

.xp-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.xp-bar {
    position: relative;
    width: 100%;
    height: 30px;
    background: rgba(0, 184, 255, 0.1);
    border: 2px solid var(--solo-blue);
    margin-bottom: 8px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--solo-blue), var(--solo-blue-bright));
    box-shadow:
        0 0 15px var(--solo-blue-glow),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: xpPulse 2s ease-in-out infinite;
    position: relative;
}

.xp-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: xpShine 2s infinite;
}

.xp-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.xp-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: right;
}

.xp-current,
.xp-max {
    color: var(--solo-blue);
    font-weight: 600;
}

/* Estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    padding: 15px;
    background: rgba(0, 184, 255, 0.05);
    border: 1px solid rgba(0, 184, 255, 0.2);
}

.stat-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.stat-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background: rgba(0, 184, 255, 0.1);
    border: 1px solid var(--solo-blue);
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--solo-blue), var(--solo-blue-bright));
    box-shadow: 0 0 10px var(--solo-blue-glow);
    transition: width 1s ease-out;
    position: relative;
}

.stat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: statShine 2s infinite;
}

.stat-value {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    color: #000000;
    font-weight: 700;
    font-size: 0.75rem;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    z-index: 1;
}

/* Skills Section */
.skills-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--solo-blue);
}

.skills-title {
    font-size: 1.2rem;
    color: var(--solo-blue);
    text-shadow: 0 0 10px var(--solo-blue-glow);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 184, 255, 0.05);
    border: 1px solid rgba(0, 184, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(0, 184, 255, 0.1);
    border-color: var(--solo-blue);
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.3);
    transform: translateX(5px);
}

.skill-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px var(--solo-blue-glow));
}

.skill-name {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.skill-level {
    color: var(--solo-blue);
    text-shadow: 0 0 8px var(--solo-blue-glow);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--solo-blue);
    text-shadow: 0 0 15px var(--solo-blue-glow);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Links Section */
.links-section {
    background: var(--bg-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 184, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.links-content {
    position: relative;
    z-index: 1;
}

.links-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--solo-blue);
    text-shadow: 0 0 20px var(--solo-blue-glow);
    font-weight: 600;
    letter-spacing: 1px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border: 2px solid var(--solo-blue);
    background: rgba(0, 184, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px rgba(0, 184, 255, 0.2),
        inset 0 0 15px rgba(0, 184, 255, 0.05);
    position: relative;
    overflow: hidden;
}

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

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

.link-card:hover {
    transform: translateY(-5px) translateX(5px);
    border-color: var(--solo-blue-bright);
    box-shadow:
        0 0 30px var(--solo-blue-glow),
        inset 0 0 20px rgba(0, 184, 255, 0.1);
    background: rgba(0, 184, 255, 0.1);
}

.link-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    filter: drop-shadow(0 0 10px var(--solo-blue-glow));
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.2) rotate(5deg);
}

.link-info {
    flex: 1;
}

.link-info h3 {
    font-size: 1.3rem;
    color: var(--solo-blue);
    text-shadow: 0 0 10px var(--solo-blue-glow);
    margin-bottom: 5px;
    font-weight: 600;
}

.link-card:hover .link-info h3 {
    color: var(--solo-blue-bright);
    text-shadow: 0 0 15px var(--solo-blue-glow);
}

.link-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.link-arrow {
    font-size: 1.5rem;
    color: var(--solo-blue);
    text-shadow: 0 0 10px var(--solo-blue-glow);
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.link-card:hover .link-arrow {
    transform: translateX(5px);
    color: var(--solo-blue-bright);
    text-shadow: 0 0 15px var(--solo-blue-glow);
}

/* About Section */
.about {
    background: var(--bg-dark);
}

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

.about-card {
    padding: 30px;
    border: 2px solid var(--solo-blue);
    border-radius: 0;
    background: rgba(0, 184, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px rgba(0, 184, 255, 0.2),
        inset 0 0 15px rgba(0, 184, 255, 0.05);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 30px var(--solo-blue-glow),
        inset 0 0 20px rgba(0, 184, 255, 0.1);
    background: rgba(0, 184, 255, 0.1);
    border-color: var(--solo-blue-bright);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--solo-blue);
    text-shadow: 0 0 8px var(--solo-blue-glow);
}

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

/* Content Section */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    padding: 30px;
    border: 2px solid var(--solo-blue);
    border-radius: 0;
    background: rgba(0, 184, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px rgba(0, 184, 255, 0.2),
        inset 0 0 15px rgba(0, 184, 255, 0.05);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 30px var(--solo-blue-glow),
        inset 0 0 20px rgba(0, 184, 255, 0.1);
    background: rgba(0, 184, 255, 0.1);
    border-color: var(--solo-blue-bright);
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-level {
    background: var(--solo-blue);
    color: #000000;
    padding: 5px 15px;
    border-radius: 0;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 10px var(--solo-blue-glow);
}

.card-category {
    background: rgba(0, 184, 255, 0.2);
    color: var(--solo-blue);
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.9rem;
    border: 1px solid var(--solo-blue);
    box-shadow: 0 0 8px rgba(0, 184, 255, 0.3);
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--solo-blue);
    text-shadow: 0 0 8px var(--solo-blue-glow);
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.xp-badge {
    background: var(--solo-blue);
    color: #000000;
    padding: 5px 15px;
    border-radius: 0;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 10px var(--solo-blue-glow);
}

/* Contact Section */
.contact {
    background: var(--bg-darker);
    text-align: center;
}

.contact-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    padding: 15px 30px;
    border: 2px solid var(--solo-blue);
    border-radius: 0;
    color: var(--solo-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    background: transparent;
    box-shadow:
        0 0 15px rgba(0, 184, 255, 0.4),
        inset 0 0 15px rgba(0, 184, 255, 0.1);
}

.social-link:hover {
    background: rgba(0, 184, 255, 0.15);
    color: var(--solo-blue-bright);
    box-shadow:
        0 0 25px var(--solo-blue-glow),
        inset 0 0 20px rgba(0, 184, 255, 0.2);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--solo-blue);
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 -2px 20px rgba(0, 184, 255, 0.2);
}

.footer p {
    color: var(--text-secondary);
    margin: 5px 0;
}

.footer-note {
    color: var(--solo-blue);
    text-shadow: 0 0 10px var(--solo-blue-glow);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

@keyframes glitch {
    0% {
        text-shadow: 2px 0 #ff6666;
    }

    20% {
        text-shadow: -2px 0 var(--solo-blue);
    }

    40% {
        text-shadow: 2px 0 #ff6666;
    }

    60% {
        text-shadow: -2px 0 var(--solo-blue);
    }

    80% {
        text-shadow: 2px 0 #ff6666;
    }

    100% {
        text-shadow: -2px 0 var(--solo-blue);
    }
}

@keyframes glitch-text {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }

    5% {
        clip: rect(12px, 9999px, 59px, 0);
    }

    10% {
        clip: rect(33px, 9999px, 29px, 0);
    }

    15% {
        clip: rect(92px, 9999px, 98px, 0);
    }

    20% {
        clip: rect(23px, 9999px, 82px, 0);
    }

    25% {
        clip: rect(1px, 9999px, 94px, 0);
    }

    30% {
        clip: rect(90px, 9999px, 100px, 0);
    }

    35% {
        clip: rect(1px, 9999px, 94px, 0);
    }

    40% {
        clip: rect(40px, 9999px, 26px, 0);
    }

    45% {
        clip: rect(42px, 9999px, 73px, 0);
    }

    50% {
        clip: rect(20px, 9999px, 20px, 0);
    }

    55% {
        clip: rect(60px, 9999px, 60px, 0);
    }

    60% {
        clip: rect(90px, 9999px, 100px, 0);
    }

    65% {
        clip: rect(1px, 9999px, 94px, 0);
    }

    70% {
        clip: rect(40px, 9999px, 26px, 0);
    }

    75% {
        clip: rect(42px, 9999px, 73px, 0);
    }

    80% {
        clip: rect(20px, 9999px, 20px, 0);
    }

    85% {
        clip: rect(60px, 9999px, 60px, 0);
    }

    90% {
        clip: rect(90px, 9999px, 100px, 0);
    }

    95% {
        clip: rect(1px, 9999px, 94px, 0);
    }

    100% {
        clip: rect(42px, 9999px, 44px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    5% {
        clip: rect(14px, 9999px, 33px, 0);
    }

    10% {
        clip: rect(50px, 9999px, 5px, 0);
    }

    15% {
        clip: rect(98px, 9999px, 9px, 0);
    }

    20% {
        clip: rect(48px, 9999px, 94px, 0);
    }

    25% {
        clip: rect(14px, 9999px, 98px, 0);
    }

    30% {
        clip: rect(11px, 9999px, 29px, 0);
    }

    35% {
        clip: rect(14px, 9999px, 98px, 0);
    }

    40% {
        clip: rect(50px, 9999px, 5px, 0);
    }

    45% {
        clip: rect(98px, 9999px, 9px, 0);
    }

    50% {
        clip: rect(48px, 9999px, 94px, 0);
    }

    55% {
        clip: rect(14px, 9999px, 98px, 0);
    }

    60% {
        clip: rect(11px, 9999px, 29px, 0);
    }

    65% {
        clip: rect(14px, 9999px, 98px, 0);
    }

    70% {
        clip: rect(50px, 9999px, 5px, 0);
    }

    75% {
        clip: rect(98px, 9999px, 9px, 0);
    }

    80% {
        clip: rect(48px, 9999px, 94px, 0);
    }

    85% {
        clip: rect(14px, 9999px, 98px, 0);
    }

    90% {
        clip: rect(11px, 9999px, 29px, 0);
    }

    95% {
        clip: rect(14px, 9999px, 98px, 0);
    }

    100% {
        clip: rect(65px, 9999px, 100px, 0);
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--solo-blue);
    }
}

/* Animações específicas do modal Solo Leveling */
@keyframes circuitFlow {

    0%,
    100% {
        opacity: 1;
        box-shadow:
            0 0 15px var(--solo-blue-glow),
            0 0 30px var(--solo-blue-glow),
            0 0 45px var(--solo-blue-glow);
    }

    50% {
        opacity: 0.85;
        box-shadow:
            0 0 25px var(--solo-blue-glow),
            0 0 50px var(--solo-blue-glow),
            0 0 75px var(--solo-blue-glow);
    }
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(10px, -10px) scale(1.05);
        opacity: 0.5;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 25px var(--solo-blue-glow),
            0 0 50px var(--solo-blue-glow),
            inset 0 0 15px rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow:
            0 0 35px var(--solo-blue-glow),
            0 0 70px var(--solo-blue-glow),
            inset 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

@keyframes playerGlow {

    0%,
    100% {
        text-shadow:
            0 0 12px var(--solo-blue-glow),
            0 0 24px var(--solo-blue-glow),
            0 0 36px var(--solo-blue-glow);
    }

    50% {
        text-shadow:
            0 0 18px var(--solo-blue-glow),
            0 0 36px var(--solo-blue-glow),
            0 0 54px var(--solo-blue-glow),
            0 0 72px var(--solo-blue-glow);
    }
}

@keyframes countdownPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

@keyframes xpPulse {

    0%,
    100% {
        box-shadow:
            0 0 15px var(--solo-blue-glow),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow:
            0 0 25px var(--solo-blue-glow),
            inset 0 0 15px rgba(255, 255, 255, 0.4);
    }
}

@keyframes xpShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes statShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stats {
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .system-message {
        padding: 35px 30px;
    }

    .notification-message {
        font-size: 17px;
    }

    .warning-text {
        font-size: 13px;
    }

    .notification-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }

    .exclamation {
        font-size: 24px;
    }

    .notification-label {
        font-size: 12px;
        padding: 8px 18px;
        letter-spacing: 2px;
    }

    .btn-accept,
    .btn-reject {
        padding: 12px 35px;
        font-size: 14px;
    }

    .modal-content {
        width: 92%;
    }

    .simple-links {
        padding: 24px 16px;
    }

    .logo-image {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .site-logo {
        font-size: 1.25rem;
    }

    .social-icons-top {
        gap: 16px;
        font-size: 1.5rem;
    }

    .links-container {
        margin-top: 32px;
    }

    .link-card {
        padding: 14px;
    }

    .link-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .link-title {
        font-size: 1rem;
    }

    .link-description {
        font-size: 0.8rem;
    }

    .link-arrow {
        width: 24px;
        height: 24px;
    }

    .service-cards-container {
        gap: 12px;
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .service-card {
        max-width: 140px;
    }

    .service-card-image {
        height: 110px;
    }

    .service-title {
        font-size: 14px;
        padding: 8px 8px 4px 8px;
    }

    .service-description {
        font-size: 11px;
        padding: 0 8px 12px 8px;
    }

    .service-badge {
        font-size: 10px;
        padding: 2px 6px;
        margin: 4px 8px;
    }

    .status-panel {
        padding: 25px 20px;
    }

    .status-title {
        font-size: 1.4rem;
    }

    .status-level {
        font-size: 1.1rem;
    }

    .level-number {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .player-name,
    .player-class {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .name-label,
    .class-label {
        min-width: auto;
    }
}