:root {
    --bg: #03081e;
    --surface: #0c1b35;
    --surface-2: #1e1e1e;
    --text: #e0e0e0;
    --text-strong: #ffffff;
    --text-muted: #b3b3b3;
    --accent: #22b496;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;

    /* Ammo type colors (used in Sounds) */
    --ammo-compact: #4dabf7;
    --ammo-medium: #ff922b;
    --ammo-long: #fa5252;
    --ammo-shotgun: #51cf66;
    --ammo-special: #cc5de8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hide {display: none;}

body {
    font-family: Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
}

body::before {
    content: '';
    position: fixed; /* Fixes the background image */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/Kamille-bg.jpg'); /* Add your image URL */
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Adjust blur level */
    z-index: -1; /* Ensure it stays behind the content */
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: rgba(3, 8, 30, 0.6);
    padding: 20px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    width: 580px;
    max-width: calc(100vw - 20px);
}

.profile-pic {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border: 2px solid var(--text);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-strong);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-container {
    display: flex;
    align-items: center;
    background-color: var(--surface);
    border-radius: 5px;
    padding: 0 10px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.link-container:hover,
.link-container:focus-within {
    background-color: var(--accent);
    transform: translateY(-1px);
}

.link-container i {
    font-size: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease;
}

.link-container a {
    text-decoration: none;
    color: var(--text);
    padding: 15px;
    display: block;
    flex-grow: 1;
    outline: none;
}

.link-container:hover a,
.link-container:focus-within a {
    color: #030303;
}

.link-container a:focus-visible {
    text-decoration: underline;
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-switcher .dropdown-toggle {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
}