/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0916, #2b1838, #170d1f);
    background-attachment: fixed;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 18+ Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    text-align: center;
    padding: 20px;
}

#overlay h1 {
    font-size: 2rem;
    color: #bc13fe;
    text-shadow: 0 0 10px #bc13fe;
    margin-bottom: 20px;
}

.confirm-btn {
    background: transparent;
    border: 2px solid #bc13fe;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50px;
}

.confirm-btn:hover {
    background: #bc13fe;
    box-shadow: 0 0 20px #bc13fe;
}

.under-btn {
    background: transparent;
    border: 2px solid #00000000;
    color: white;
    padding: 15px 40px;
    font-size: 1rem;
    cursor: pointer;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
    padding: 40px 20px;
    display: none;
    /* Hidden until confirmed */
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #bc13fe;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 10px;
    letter-spacing: 1px;
}

p {
    opacity: 0.7;
    margin-bottom: 30px;
}

/* Buttons */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid hsla(300, 100%, 50%, 0.267);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: left;
    transition: 0.2s;
    position: relative;
    font-size: 1.2rem;
}

.btn i {
    position: absolute;
    right: 20px;
    font-size: 2rem;
}

.btn:hover i {
    transform: scale(1.25); /* Makes the logo grow 25% on hover */
    transition: 0.2s;
}

.btn:hover {
    background: rgba(188, 19, 254, 0.2);
    border-color: #bc13fe;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}