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

:root {
    --primary-purple: #9333ea;
    --secondary-purple: #a855f7;
    --light-purple: #c084fc;
    --dark-bg: #0a0e1a;
    --card-bg: #141824;
    --discord-blue: #5865F2;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f35 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f35 100%);
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--primary-purple);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid var(--primary-purple);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1) rotate(360deg);
}

.navbar-name {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background: rgba(147, 51, 234, 0.1);
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(147, 51, 234, 0.2);
    color: var(--primary-purple);
    box-shadow: 0 2px 0 var(--primary-purple);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(147, 51, 234, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--primary-purple);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
}

.username {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.btn-logout {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.6);
}

.btn-discord-login {
    background: #5865F2;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-discord-login:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}

.btn-discord {
    background: var(--discord-blue);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.35);
    margin-top: 1rem;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.55);
}

.pause-container {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.pause-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pause-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pause-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pause-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.pause-section h2 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.pause-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.pause-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .navbar-name {
        font-size: 1.5rem;
    }

    .username {
        display: none;
    }

    .pause-container {
        padding: 2rem 1rem;
    }

    .pause-header h1 {
        font-size: 1.8rem;
    }

    .pause-section {
        padding: 1.5rem;
    }
}
.navbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}