@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
    --primary-color: #7D18CE;
    --secondary-color: #9D12D6;
    --tertiary-color: #2418CF;
    --dark-color: #0A104E;
    --light-color: #ffffff;
    --gold-color: #FFD700;
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFC107);
    --purple-gradient: linear-gradient(135deg, #7D18CE, #2418CF);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #000;
    color: var(--light-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100vw;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(50px);
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -50px;
    right: -50px;
}

.bg-circle-2 {
    width: 350px;
    height: 350px;
    background: var(--tertiary-color);
    bottom: -100px;
    left: -100px;
}

.bg-circle-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 40%;
    right: 20%;
}

.bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(125, 24, 206, .05) 25%, rgba(125, 24, 206, .05) 26%, transparent 27%, transparent 74%, rgba(125, 24, 206, .05) 75%, rgba(125, 24, 206, .05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(125, 24, 206, .05) 25%, rgba(125, 24, 206, .05) 26%, transparent 27%, transparent 74%, rgba(125, 24, 206, .05) 75%, rgba(125, 24, 206, .05) 76%, transparent 77%, transparent);
    background-size: 30px 30px;
}

/* Main Content Styles */
.main-content {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
    min-height: 100vh;
}

.header {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.header-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.header-title {
    font-size: 22px;
    font-weight: 700;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 5px;
}

.header-greeting {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.header-subtitle {
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
}

.logout-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(125, 24, 206, 0.2);
    border: 1px solid rgba(125, 24, 206, 0.3);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logout-button:hover {
    background: rgba(125, 24, 206, 0.3);
}

.menu-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(10, 16, 78, 0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 24, 206, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.menu-item:hover {
    background: rgba(125, 24, 206, 0.2);
    transform: translateY(-3px);
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-icon {
    width: 40px;
    height: 40px;
    background: rgba(125, 24, 206, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.menu-title {
    font-size: 18px;
    font-weight: 700;
}

.menu-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.menu-description {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
    max-width: 250px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-item {
        padding: 15px;
    }
    
    .menu-title {
        font-size: 16px;
    }
    
    .menu-description {
        font-size: 12px;
    }
    
    .header-title {
        font-size: 20px;
    }
    
    .header-logo {
        max-width: 120px;
    }
}

@media (max-width: 360px) {
    .menu-container {
        padding: 15px;
    }
    
    .menu-item {
        padding: 12px;
    }
    
    .menu-title {
        font-size: 14px;
    }
    
    .menu-description {
        font-size: 11px;
    }
}

