body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    overflow: hidden;
}

.page {
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    padding: 40px;
    position: relative;
}

.hex-button {
    width: 240px;
    height: 280px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.hex-button:hover {
    transform: scale(1.12) rotate(4deg);
    filter: drop-shadow(0 15px 30px rgba(255,107,107,0.5));
}

.hex-button span {
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hex-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hex-button:hover::before {
    opacity: 1;
}

/* Subpage styles */
.subpage-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
}

.return-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.return-btn:hover {
    background: #ff6b6b;
    transform: scale(1.05);
}

/* Title */
.title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 4px;
}