:root {
    --pure-black: #000000;
    --dark-gray: #222222;
    --medium-gray: #333333;
    --light-gray: #444444;
    --text-white: #FFFFFF;
    --text-light: #CCCCCC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--pure-black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Simple Background - No animations */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--pure-black);
    z-index: -1;
}

/* Remove all orbs and particles */
.gradient-orb,
.grid-overlay,
#particleCanvas {
    display: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--pure-black);
    border-bottom: 1px solid var(--medium-gray);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-white);
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-white);
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-white);
}

/* Simple Buttons - Dark Gray with White Text */
.premium-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.primary-btn {
    background-color: var(--dark-gray);
    color: var(--text-white);
}

.primary-btn:hover {
    background-color: var(--medium-gray);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--medium-gray);
}

.secondary-btn:hover {
    background-color: var(--dark-gray);
}

/* Footer */
.footer {
    background-color: var(--pure-black);
    border-top: 1px solid var(--medium-gray);
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--text-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-light);
    border-top: 1px solid var(--medium-gray);
    margin-top: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: var(--pure-black);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--medium-gray);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    color: var(--text-light);
    font-size: 28px;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--text-white);
}

/* Status Modal */
.status-modal {
    text-align: center;
    padding: 2rem;
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.status-modal h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.status-modal p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--dark-gray);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
}

.back-to-top:hover {
    background-color: var(--medium-gray);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    margin: 3px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--pure-black);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .premium-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}