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

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

/* Landing Page Styles */
.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100%;
    background: url('https://www.transparenttextures.com/patterns/clear.png'), 
                linear-gradient(135deg, #1f1f1f, #2c2c2c);
    background-size: cover, cover;
    position: relative; /* Required for overlay */
}

.landing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/paper.png'); /* More pronounced texture */
    opacity: 0.3; /* Increase opacity for better visibility */
    pointer-events: none; /* Prevent interaction with the overlay */
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    position: relative; /* Ensure content is above texture */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.domain-name {
    font-size: 2.5rem;
    color: #e0e0e0;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
}

.domain-name span {
    color: #00ff7f;
    font-weight: 700;
    text-shadow: 0px 0px 10px rgba(0, 255, 127, 0.7); /* Soft glow effect */
}

.tagline {
    font-size: 1.2rem;
    color: #b3b3b3;
    letter-spacing: 0.05rem;
    margin-top: 0.5rem;
    font-style: normal;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .domain-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }
}