/* General Reset and Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Hide the default cursor so we can use our custom one */
    cursor: none;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevent scrolling for a full screen landing page */
    background-color: #050505; /* Deep dark background */
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

/* Typography & Layout */
.content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10; /* Ensure content is above the canvas */
    pointer-events: none; /* Let clicks pass through to the background if needed */
}

.title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    /* Subtle text glow */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: #aaaaaa;
}

/* Interactive Background Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Below the content */
}

/* Custom Cursor Styles */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s; /* Smooth sizing if we wanted hover effects later */
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.3rem;
    }
    /* Revert to default cursor on mobile devices where custom cursor doesn't make sense */
    * {
        cursor: auto;
    }
    .cursor-dot, .cursor-outline {
        display: none;
    }
}
