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

html {
    height: 100%;
    width: 100%;
    background: #151515;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: transparent;
    padding: 2em;
    position: relative;
    overflow-x: hidden;
    z-index: 10;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #e8e8e8;
}


/* Container */
.container {
    max-width: 750px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 3em;

}

/* Hamburger Menu */
.hamburger {
    position: fixed;
    top: 2em;
    right: 2em;
    z-index: 1000;
    cursor: pointer;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Dropdown Menu */
.nav-menu {
    position: fixed;
    top: -400px;
    right: 0;
    width: 320px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 12px;
    padding: 4em 2em 2em;
    z-index: 999;
    transition: top 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-menu.active {
    top: 0;
}

.nav-menu a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1em 0;
    font-size: 1.2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
    width: 100%;
    text-align: center;
    font-family: "Rubik Dirt", system-ui;
}

.nav-menu a:hover {
    color: #988fc1;
}

.nav-menu a:last-child {
    border-bottom: none;
}

/* Typography */
h1 {
    margin-bottom: 0.3em;
    color: #ffffff;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 2.2em;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

h2 {
    margin-top: 2.5em;
    margin-bottom: 1em;
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
button,
.button {
    padding: 1.2em;
    background: linear-gradient(135deg, #988fc1 0%, #6b56d8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s ease;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

button:hover,
.button:hover {
    background: linear-gradient(135deg, #b0a5df 0%, #8a73fc 100%);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
    transform: translateY(-2px);
}

button:disabled,
.button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: linear-gradient(135deg, #666 0%, #555 100%);
    transform: none;
}

button:disabled:hover,
.button.disabled:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: none;
}

/* Social Icons */
.social-links {
    text-align: center;
    margin: 3em 0;
}

.social-links p {
    color: #d0d0d0;
    margin-bottom: 1em;
}

.socials {
    display: flex;
    gap: 2em;
    justify-content: center;
}

.socials a {
    color: #ffffff;
    font-size: 2em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.socials a:hover {
    color: #988fc1;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .hamburger {
        top: 1.5em;
        right: 1.5em;
    }

    .nav-menu {
        width: 100%;
        right: 0;
        left: 0;
        top: -400px;
        padding: 3em 1.5em 1.5em;
        border-left: none;
        border-bottom-left-radius: 0;
    }

    .nav-menu a {
        font-size: 1.1em;
    }

    h1 {
        font-size: 1.6em;
    }

    h2 {
        font-size: 1.3em;
    }
}

@media (min-width: 900px) {
    body {
        background:
            radial-gradient(circle at 20% 50%, rgba(123, 50, 191, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(190, 65, 131, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(37, 114, 139, 0.15) 0%, transparent 50%);
    }
}