/* Background styling - radial gradient */
.home-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.1), rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
}

/* Smooth transition on mouse move */
.home-container {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    max-width: calc(100vh - var(--header-height));
}

/* Tile container for the background pattern */
.tile-container {
    position: absolute;
    top: 0;
    left: -50px;
    width: calc(100% + 100px);
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Tile styling */
.tile {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 100, 255, 0.1);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Hero section content */
.hero-oval {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-oval h1,
.hero-oval p {
    margin: 0 auto;
    max-width: 800px;
}