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

body {
    font-family: 'Manrope', sans-serif;
    background-color: #1C1C1E;
    color: #E5E5E7;
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #2C2C2E;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: width 0.3s;
}

.sidebar:hover {
    width: 260px;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.profile:hover {
    transform: scale(1.05);
}

.profile img {
    border-radius: 50%;
    margin-right: 10px;
}

.profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-info p {
    font-size: 0.9rem;
    color: #A8A8A8;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    margin-bottom: 10px;
}

nav ul li a {
    color: #E5E5E7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #1DA1F2;
    transform: translateX(10px);
}

.sidebar-footer {
    margin-top: 20px;
}

.btn-signout {
    width: 100%;
    padding: 10px;
    background-color: #1DA1F2;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-signout:hover {
    background-color: #1A91DA;
    transform: scale(1.05);
}

.sidebar-footer ul {
    list-style-type: none;
    margin-top: 10px;
}

.sidebar-footer ul li {
    margin-bottom: 10px;
}

.sidebar-footer ul li a {
    color: #E5E5E7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, transform 0.3s;
}

.sidebar-footer ul li a:hover {
    color: #1DA1F2;
    transform: translateX(10px);
}

/* Main Content */
.main-content {
    flex-grow: 1;
    padding: 20px;
    transition: transform 0.3s;
}


header h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.stats, .rank, .leaderboard, .achievements, .rewards {
    margin-bottom: 30px;
}

.stat-card, .rank-card {
    background-color: #2C2C2E;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s, background-color 0.3s;
}

.stat-card:hover, .rank-card:hover {
    transform: scale(1.05);
    background-color: #3C3C3E;
}

.stat-card {
    display: inline-block;
    width: 23%;
    margin-right: 1%;
}

.rank-card {
    display: inline-block;
    width: 23%;
    margin-right: 1%;
}

.leaderboard ul, .achievements ul, .rewards ul {
    list-style-type: none;
}

.leaderboard ul li, .achievements ul li, .rewards ul li {
    margin-bottom: 10px;
    background-color: #2C2C2E;
    padding: 10px;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.leaderboard ul li:hover, .achievements ul li:hover, .rewards ul li:hover {
    transform: scale(1.01);
    background-color: #3C3C3E;
}

.btn-redeem {
    background-color: #1DA1F2;
    color: #FFFFFF;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    float: right;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-redeem:hover {
    background-color: #1A91DA;
    transform: scale(1.05);
}

.signup-container {
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #2C2C2E;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #E5E5E7;
}

.signup-container h1 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #3A3A3C;
    color: #E5E5E7;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #1DA1F2;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #1A91DA;
}


/* Animations */
.wow {
    visibility: hidden;
}

.animate__fadeIn {
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
