:root {
    --bg-main: #000000;
    --bg-secondary: #232c36;
    --bg-main-header: #8c429e;
    --accent: #c690ca;
    --highlight: #66fcf1;
    --text-main: #c5c6c7;
    --text-muted: #9fa3a7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
}


.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(90deg, #ad68b0, #ad68b0);
    border-bottom: 2px solid var(--accent);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.sub-title {
    font-size: 14px;
    color: white;
}

.nav-right {
    display: flex;
    gap: 15px;
}

.nav-btn {
    text-decoration: none;
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 4px;
    transition: 0.2s;
}

.nav-btn:hover {
    border: 1px solid var(--accent);
    color: white;
}

.nav-btn.active {
    background-color: var(--accent);
    color: black;
    font-weight: 600;
}

.gallery-container {
    max-width: 1400px;
    margin: auto;
    padding: 40px;
}

.gallery-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.game-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(162, 115, 172, 0.6);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    color: rgb(252, 251, 252);
    margin-bottom: 6px;
}

.game-info p {
    font-size: 14px;
    color: var(--text-muted);
}


footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background-color: #ae63ae;
}

footer span {
    color: var(--accent);
}


@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.about-content {

    max-width: 900px;
    margin: auto;
    padding: 40px;
    color: white;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 40px;
}

.profile-picture {
    width: 500px;
    height: 500px;
    border-radius: 20%;
    object-fit: contain;
    flex-shrink: 0;
}

a img {
    cursor: pointer;
}

.about-text-container {
    height: 500px;
    text-align: center;
    width: 500px;
}
.about-text {
    vertical-align: middle;
    margin: 20px;
}

.banner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.title-section {
    text-align: center;
    background: black;
    padding: 20px 0;
    color: white;
}

.title-section h1 {
    font-size: 50   px;
    margin: 0;
}
.media-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: rgb(91, 70, 91);
    padding: 30px 20px 50px;
    flex-wrap: wrap;
}
.desc-section {
    max-width: 420px;
    color: rgb(192, 167, 197);
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.desc-section p {
    margin-bottom: 15px;
}
.video-section video {
    width: 700px;
    height: 400px;
    border-radius: 10px;
}
.title-section p {
    font-size: 40px;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgb(252, 246, 246);
}text-shadow: 2px 2px 4px rgb(252, 246, 246);