/* Reset default margins and ensure full viewport height */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Light texture overlay for the black background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAFUlEQVR42mNgwAfKy8v/9swDAwPD7//z8H5+jp6eP7///8ADAMbEAIsTAEdJAAr/M0BN6rMGoAAAAASUVORK5CYII='); /* Subtle noise texture */
    opacity: 0.05;
    z-index: 1;
}

/* Container for centering content */
.container {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* 3D Title Styling */
.title {
    color: #ffd700; /* Light gold */
    font-size: 6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
    transform: perspective(500px) rotateX(20deg) rotateY(0deg);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

/* 3D effect on hover (optional, for interactivity) */
.title:hover {
    transform: perspective(500px) rotateX(20deg) rotateY(10deg);
}

/* 2D Subheading Styling */
.subheading {
    color: #daa520; /* Darker gold */
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }
    .subheading {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }
    .subheading {
        font-size: 0.9rem;
    }
}