* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212; 
    color: #e0e0e0;
    line-height: 1.7;
}


header #teteje {
    display: none; 
}


header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; 
}

.logo-img {
    height: 50px; 
    width: auto;
    border-radius: 8px;
}

.logo-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
}

.yellow-dot {
    color: #f3b105;
}

.menu {
    display: flex;
    gap: 30px; 
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s, opacity 0.3s;
}

.menu a:hover {
    color: #ffffff;
    opacity: 0.7;
}


.hero-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    background-color: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.75));
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.yellow-line {
    width: 80px;
    height: 4px;
    background-color: #f3b105;
    margin: 0 auto 30px auto;
}


.game-links-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.hero-btn {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, border-color 0.3s, color 0.3s;
    min-width: 180px;
}


.hero-btn:hover {
    transform: scale(1.08); 
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    cursor: pointer;
}


.content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.content h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    color: #b3b3b3;
    margin-bottom: 25px;
    text-align: justify;
    text-justify: inter-word;
}

.highlight-text {
    font-weight: bold;
}


.update-log {
    background: #1e1e1e;
    border-left: 4px solid #f3b105;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.update-version {
    font-weight: bold;
    color: #ffffff;
    font-size: 18px;
}


.dev-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center; 
}


.dev-card-link {
    text-decoration: none;
    color: inherit;
}

.dev-card {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 240px;
    
   
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 310px; 
    justify-content: space-between; 
    
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
}


.dev-card:hover {
    transform: scale(1.06);
    background-color: #2a2a2a; 
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.06); 
    cursor: pointer;
}


.dev-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #ffffff; 
}

.dev-name {
    font-weight: bold;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 5px;
}

.dev-rank {
    color: #f3b105; 
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}


.dev-discord {
    color: #aaaaaa;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.04);
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 5px;
}


.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    transform: rotate(-90deg);
    font-size: 20px;
    z-index: 100;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.scroll-to-top:hover {
    background-color: #ffffff;
    color: #000000;
    transform: rotate(-90deg) scale(1.1);
}


.language-picker-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    flex-wrap: wrap;
}

.lang-label {
    font-size: 14px;
    color: #888888;
    font-weight: 500;
}

.lang-buttons {
    display: flex;
    gap: 10px;
}

.lang-btn {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background-color: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 6px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, border-color 0.3s, color 0.3s;
}


.lang-btn:hover {
    transform: scale(1.1);
    background-color: #f3b105; 
    color: #000000;
    border-color: #f3b105;
    cursor: pointer;
}


.lang-btn.active {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    pointer-events: none; 
}