/* Theme Variables */
:root {
    /* Couleurs inspirées de CS:GO et Valorant */
    --primary-color: #ff4655;          /* Rouge Valorant */
    --secondary-color: #bd3944;        /* Rouge foncé pour les hover */
    --accent-color: #0ff1ce;           /* Cyan futuriste */
    --text-color: #ffffff;
    --text-muted: #8b978f;
    --hud-color: rgba(255, 70, 85, 0.15); /* Effet HUD transparent */
    --background-dark: #1f2326;        /* Fond sombre style CS:GO */
    --background-darker: #15171a;      /* Fond plus sombre pour les sections */

    /* Polices */
    --font-main: 'Tungsten-Bold', sans-serif;    /* Police style Valorant */
    --font-secondary: 'DIN Next LT Pro', sans-serif;

    /* Espacements */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles globaux */
body {
    font-family: var(--font-secondary);
    background: transparent !important;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

/* Effet HUD global */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    z-index: 1000;
}

/* Header Styles - Style FPS */
.container-fluid {
    position: relative;
    padding: 2rem;
    background: linear-gradient(180deg, var(--background-darker) 0%, transparent 100%);
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 2rem;
}

/* Style nom principal comme un gamertag */
.name h1 {
    font-family: var(--font-main);
    font-size: 4rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.name h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.title {
    font-family: var(--font-main);
    color: var(--accent-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bio avec style HUD */
.bio {
    position: relative;
    padding: 1rem;
    background: rgba(31, 35, 38, 0.8);
    border: 1px solid var(--primary-color);
    margin: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Style photo de profil */
.profile {
    position: relative;
    width: 300px;
    height: 300px;
}

.cercle {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: skew(-5deg);
}

.cercle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skew(5deg) scale(1.1);
}

/* Boutons CTA style gaming */
.btn-97 {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-97:hover {
    background: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-color);
}

/* Style des sections */
.section {
    position: relative;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(31, 35, 38, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--hud-color) 0%, transparent 100%);
    z-index: 0;
}

.section-title {
    font-family: var(--font-main);
    font-size: 3rem;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Style des compétences façon loadout CS:GO */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.skill-category {
    background: rgba(31, 35, 38, 0.8);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.skill-category h3 {
    font-family: var(--font-main);
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 70, 85, 0.2);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 70, 85, 0.1);
    border-color: var(--primary-color);
}

.skill-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Navigation style Valorant */
.nav-tabs {
    border: none;
    background: var(--background-darker);
    padding: 1rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nav-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-main);
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--primary-color);
    background: transparent;
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* Footer style gaming */
footer {
    background: linear-gradient(to top, var(--background-darker) 0%, transparent 100%);
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-main);
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

/* Effet de vitesse au scroll */
.speed-effect {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    background-size: 100% 100px;
    animation: speedLines 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

@keyframes speedLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

/* Animation au scroll */
.scrolling .speed-effect {
    opacity: 0.5;
}

/* Style des hobbies façon loadout gaming */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.hobby-card {
    position: relative;
    background: rgba(31, 35, 38, 0.8);
    border: 1px solid var(--primary-color);
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
    transform: skew(-2deg);
}

.hobby-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--hud-color), transparent);
    z-index: 0;
}

.hobby-card:hover {
    transform: skew(-2deg) translateY(-5px);
    box-shadow: 0 0 20px var(--primary-color);
}

.hobby-content {
    position: relative;
    z-index: 1;
    transform: skew(2deg);
}

.hobby-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.hobby-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hobby-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Style de la timeline d'expérience façon HUD */
.experience-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: calc(50% - 2rem);
}

.timeline-item:nth-child(odd) {
    margin-left: auto;
    padding-left: 2rem;
}

.timeline-item:nth-child(even) {
    padding-right: 2rem;
}

.timeline-content {
    position: relative;
    background: rgba(31, 35, 38, 0.8);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    transform: skew(-2deg);
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -3rem;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -3rem;
    transform: translateY(-50%);
}

.timeline-inner {
    transform: skew(2deg);
}

.timeline-date {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-family: var(--font-main);
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.timeline-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.timeline-tech {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid var(--primary-color);
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    border-radius: 2px;
}

/* Animation au survol */
.timeline-content:hover {
    transform: skew(-2deg) translateY(-5px);
    box-shadow: 0 0 20px var(--hud-color);
}

.tech-tag:hover {
    background: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.contact-card {
    background: rgba(31, 35, 38, 0.8);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transform: skew(-2deg);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: skew(-2deg) translateY(-5px);
    box-shadow: 0 0 20px var(--primary-color);
}

.contact-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.contact-details h3 {
    font-family: var(--font-main);
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-card {
    background: rgba(31, 35, 38, 0.8);
    border: 1px solid var(--primary-color);
    padding: 2rem;
    transform: skew(-2deg);
}

.form-title {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-contact {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-main);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 20px var(--primary-color);
}

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

.btn-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-contact:hover .btn-glitch {
    transform: translateX(0);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--text-color);
    text-shadow: 0 0 10px var(--primary-color);
    transform: scale(1.2);
}

/* Footer */
.footer-hud {
    position: relative;
    background: linear-gradient(to top, var(--background-darker) 0%, var(--background-dark) 100%);
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 70, 85, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-color);
}

.footer-tagline {
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title, .contact-title, .social-title {
    font-family: var(--font-main);
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list, .contact-list {
    list-style: none;
    padding: 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    transform: scale(1.2);
}

.footer-line {
    height: 1px;
    background: var(--primary-color);
    margin: 2rem 0;
    box-shadow: 0 0 10px var(--primary-color);
}

.copyright, .credits {
    color: var(--text-color);
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

/* About Section */
.about-grid {
    padding: 2rem;
}

.about-card {
    background: rgba(31, 35, 38, 0.8);
    border: 1px solid var(--primary-color);
    transform: skew(-2deg);
    overflow: hidden;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 70, 85, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.card-header {
    background: rgba(255, 70, 85, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.header-title {
    font-family: var(--font-main);
    color: var(--text-color);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin: 0;
    flex-grow: 1;
    letter-spacing: 2px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0ff1ce;
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #0ff1ce;
    border-radius: 50%;
    box-shadow: 0 0 10px #0ff1ce;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 241, 206, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(15, 241, 206, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 241, 206, 0);
    }
}

.card-content {
    padding: 2rem;
    transform: skew(2deg);
}

.stat-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: rgba(255, 70, 85, 0.1);
    padding: 1rem;
    border: 1px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.player-bio {
    color: var(--text-color);
    line-height: 1.6;
}

.player-bio p {
    margin-bottom: 1.5rem;
}

.player-bio .highlight {
    color: var(--primary-color);
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
    }

    .header-status {
        margin-top: 1rem;
    }

    .stat-group {
        grid-template-columns: 1fr;
    }
}

/* Three.js Canvas */
#bg-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 0 !important;
    background: var(--background-darker);
    pointer-events: none;
}

.header-hud {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.hud-overlay {
    background: linear-gradient(45deg, rgba(255, 70, 85, 0.2) 0%, rgba(31, 35, 38, 0.8) 100%) !important;
}

/* Add depth to all sections */
.section {
    position: relative;
    z-index: 1;
    background: rgba(31, 35, 38, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Header HUD */
.header-hud {
    position: relative;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
    padding: 3rem 0;
    overflow: hidden;
}

.hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 70, 85, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.header-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.player-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.player-card {
    background: rgba(31, 35, 38, 0.8);
    border: 1px solid var(--primary-color);
    position: relative;
    transform: skew(-2deg);
}

.rank-badge {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: skew(2deg);
    box-shadow: 0 0 15px var(--primary-color);
}

.rank-badge i {
    color: var(--text-color);
    font-size: 1.2rem;
}

.rank-level {
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.player-details {
    padding: 2rem;
    transform: skew(2deg);
}

.player-name {
    font-family: var(--font-main);
    color: var(--text-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.name-tag {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.player-class {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.class-icon {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid var(--primary-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.stat-name {
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.player-description {
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.description-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.mission-text {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-action {
    position: relative;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-main);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-action.primary:hover {
    background: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.btn-action.secondary {
    border-color: #0ff1ce;
    color: #0ff1ce;
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-wrapper {
    position: relative;
}

.status-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(31, 35, 38, 0.9);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    font-size: 0.8rem;
    white-space: nowrap;
    display: none;
}

.btn-wrapper:hover .status-tooltip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-section {
    padding: 2rem;
}

.profile-frame {
    position: relative;
    width: 200px;
    height: 200px;
}

.profile-border {
    position: relative;
    width: 100%;
    height: 100%;
    transform: skew(-2deg);
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.profile-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skew(2deg) scale(1.1);
}

.profile-status {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #0ff1ce;
    color: var(--background-dark);
    padding: 0.3rem 1rem;
    font-family: var(--font-main);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px #0ff1ce;
}

.social-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    transform: scale(1.1);
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive Header */
@media (max-width: 768px) {
    .player-info {
        grid-template-columns: 1fr;
    }

    .profile-section {
        order: -1;
        padding: 1rem;
    }

    .profile-frame {
        margin: 0 auto;
    }

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

    .action-buttons {
        flex-direction: column;
    }

    .social-bar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Game Button & Modal */
.btn-game {
    position: relative;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-game:hover {
    background: var(--primary-color);
    color: var(--background-darker);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--primary-color);
}

.btn-game .btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--primary-color);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-game:hover .btn-glow {
    opacity: 1;
    animation: glowPulse 1.5s infinite;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    height: 100vh;
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    background: var(--background-darker);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    color: var(--text-color);
    overflow: hidden;
}

.modal-header {
    padding: 20px;
    background: linear-gradient(45deg, var(--background-dark), var(--background-darker));
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: var(--font-main);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.close-modal {
    color: var(--text-color);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Game Styles */
#game-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: var(--background-darker);
    overflow: hidden;
}

#game-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#game-hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    padding: 20px;
}

.hud-top {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-main);
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.hud-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-color);
}

#game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 2px solid var(--primary-color);
    z-index: 3;
    min-width: 300px;
}

#game-over.hidden {
    display: none;
}

.btn-game {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    font-family: var(--font-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin: 10px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.btn-game:hover {
    background: var(--primary-color);
    color: var(--background-darker);
    box-shadow: 0 0 20px var(--primary-color);
}

.btn-game.hidden {
    display: none;
}

.modal-body {
    padding: 20px;
    position: relative;
}

#game-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--background-darker);
    border: 1px solid var(--primary-color);
    overflow: hidden;
}

#game-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

#game-hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    padding: 20px;
    font-family: var(--font-main);
}

.hud-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--text-color);
    text-shadow: 0 0 5px var(--primary-color);
}

.hud-bottom {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

#game-over h3 {
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#game-over p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.hidden {
    display: none !important;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 20px var(--primary-color); }
    100% { box-shadow: 0 0 5px var(--primary-color); }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    #game-container {
        height: 300px;
    }
}