/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #23272A; /* Dark Discord Gray */
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Navigation Bar */
header {
    background-color: #2C2F33;
    padding: 10px 0;
}

.nav-buttons button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.nav-buttons button.active {
    background: #5865F2; /* Discord Blue */
    border-radius: 5px;
}

.nav-buttons button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
main {
    flex: 1; /* Ensures the footer stays at the bottom */
    padding: 20px;
}

/* Tab Content */
.tab {
    display: none;
    padding: 20px;
    background: #2C2F33;
    border-radius: 8px;
    animation: fadeIn 0.3s ease-in-out;
}

.tab.active {
    display: block;
}

/* Fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Me */
.about-me {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(35, 39, 42, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Game List */
.game-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Game Panel */
.game-panel {
    width: 90%;
    max-width: 600px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-panel:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Game Content Overlay */
.game-content {
    background: rgba(35, 39, 42, 0.8);
    padding: 15px;
    width: 100%;
    text-align: left;
}

/* Download Button */
.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #4752C4;
}

/* WIP Section */
.wip {
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    border-radius: 10px;
    background: rgba(35, 39, 42, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.skills {
    max-width: 800px;
    margin: 20px auto;
    background: rgba(35, 39, 42, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.skills h3 {
    text-align: left;
    margin-bottom: 10px;
}

.skills-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.skills-icons a {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.skills-icons a:hover {
    transform: scale(1.1);
}

.skills-icons img {
    width: 40px;
    height: 40px;
}

/* Footer */
footer {
    background: #2C2F33;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    width: 100%;
    position: relative;
}
