/* Simple Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, time, var,
b, u, i, center {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

ul, ol {
    list-style: none;
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('../img/bg.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

header.glass {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
    animation: slideDown 1s ease-in-out forwards;
    transform: translateY(-100px);
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 50px;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #CC003A;
    left: 50%;
    bottom: 0;
    transition: width 0.3s ease, left 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

nav ul li a.active,
nav ul li a:hover {
    color: #CC003A;
}

.user-section {
    display: flex;
    align-items: center;
}

.btn-get-in {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-get-in:hover {
    background-color: #06015533;
    color: white;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    margin-top: 80px;
    animation: zoomIn 1.5s ease-in-out;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

main h2 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeSlideUp 2s ease;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tlila {
    color: #CC003A;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 6px rgba(204, 0, 58, 0.6); }
    to { text-shadow: 0 0 20px rgba(204, 0, 58, 1); }
}

.tmain {
    font-weight: bold;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

main p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    animation: fadeSlideUp 2s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 20px;
    background-color: #CC003A;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background-color: #CC003A;
    transform: translateY(-3px); 
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4); 
}

.button-icon {
    width: 20px;
    height: 20px; 
    margin-right: 10px; 
}

.footer {
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: #a0a0a0;
    background-color: #2a2a2a00;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
