:root {
    --onyx-primary: #36393f;
    --onyx-secondary: #2f3136;
    --onyx-tertiary: #202225;
    --onyx-accent: #5865f2;
    --onyx-text: #dcddde;
    --onyx-text-muted: #a3a6aa;
    --glass-effect: rgba(46, 48, 53, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--onyx-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 10px var(--onyx-accent);
}

.tagline {
    color: var(--onyx-text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.main-options {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.option-card {
    background: var(--glass-effect);
    border-radius: 8px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(88, 101, 242, 0.3);
    border-color: var(--onyx-accent);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--onyx-accent);
}

.option-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.option-desc {
    color: var(--onyx-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn {
    background-color: var(--onyx-accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #4752c4;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--onyx-text-muted);
    font-size: 0.9rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .main-options {
        flex-direction: column;
        align-items: center;
    }
    .option-card {
        width: 100%;
        max-width: 350px;
    }
}

footer {
    background-color: var(--onyx-primary);
    color: var(--onyx-text);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--onyx-text-muted);
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--onyx-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--onyx-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--onyx-text-muted);
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--onyx-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--onyx-tertiary);
    color: var(--onyx-text-muted);
    font-size: 0.9rem;
}

.panel-footer {
    background-color: var(--onyx-primary);
    color: var(--onyx-text-muted);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-top: 1px solid var(--onyx-tertiary);
}

.panel-footer .footer-right span {
    margin-left: 1rem;
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--onyx-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast.show {
    opacity: 1;
}

.toast.success {
    background-color: #4CAF50;
}

.toast.error {
    background-color: #F44336;
}

.tooltip {
    position: absolute;
    background-color: var(--onyx-tertiary);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 100;
    white-space: nowrap;
}

.tooltip:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--onyx-tertiary) transparent transparent;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--onyx-primary);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 100;
    display: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--onyx-text);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--onyx-tertiary);
}

.dropdown-menu i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}