/* --- Global Styles & Sticky Footer Setup --- */
body {
    background: linear-gradient(135deg, #0077b6, #00b4d8, #48cae4, #90e0ef, #ade8f4);
    background-size: 200%;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.page-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    width: 100%;
}

/* --- Centered Header --- */
.header {
    width: 80%; /* Adjust width to fit the layout */
    text-align: center;
    margin: 40px auto 20px auto; /* Centered, with margin for spacing */
}

.Title-Center {
    color: rgb(81, 240, 252);
    font-weight: bold;
    background-color: rgb(170, 253, 253);
    font-size: 50px;
    font-family: sans-serif;
    background-image: url('Images/diamondtexture1.jpg');
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    -webkit-text-stroke: #f1f1f1 0.5px;
}

/* --- Main Content Layout --- */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* --- Game Buttons Container --- */
.game-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Increased space between the buttons */
    margin: 20px 0;
}

.game-button {
    background-color: rgba(241, 241, 241, 0.8); /* Slightly hazy background */
    border: 3px solid #333;
    border-radius: 15px;
    padding: 80px 60px; /* Increased padding for bigger boxes */
    text-align: center;
    text-decoration: none;
    color: #333; /* Darker text for readability */
    font-size: 28px; /* Slightly larger font */
    font-weight: bold;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Stronger shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px; /* Base width for the smaller buttons */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover; /* Cover the entire button area */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat;
    position: relative; /* Needed for text shadow/stroke */
}

.game-button span {
    position: relative;
    z-index: 2; /* Ensure text is above hazy overlay */
    color: white; /* White text for contrast */
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8), 0px 0px 5px rgba(0, 0, 0, 0.6); /* Stronger text shadow */
    -webkit-text-stroke: 1px black; /* Stronger text stroke */
}

/* Hazy overlay for background images */
.game-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Darker overlay for better text contrast */
    border-radius: 12px; /* Match button border-radius minus border thickness */
    z-index: 1;
}

.game-button:hover {
    transform: translateY(-8px); /* More pronounced lift effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7); /* Even stronger shadow on hover */
}

.game-button.large-button {
    width: 400px; /* Larger width for the middle button */
    padding: 100px 80px; /* Increased padding for the larger button */
    font-size: 36px; /* Larger font for the middle button */
}

/* Specific background images for each button */
.game-buttons-container .game-button:nth-child(1) {
    background-image: url('Images/Sunview.png');
}

.game-buttons-container .game-button:nth-child(2) {
    background-image: url('Images/shoreline-sunview.png');
}

.game-buttons-container .game-button:nth-child(3) {
    background-image: url('Images/lastminutes.png');
}


/* --- Socials Bar --- */
.socials-bar {
    width: 60%; /* Adjusted width for the social bar */
    background-color: rgba(241, 241, 241, 0.9); /* Slightly less hazy */
    padding: 15px 30px; /* Increased padding */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    margin: 40px 0; /* More margin to separate from game buttons */
    display: flex;
    justify-content: center;
}

.socials-group {
    display: flex;
    justify-content: center;
    gap: 25px; /* Increased space between icons */
}

.social-icon {
    width: 45px; /* Slightly larger icons */
    height: 45px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15); /* More pronounced hover effect */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    font-family: sans-serif;
    font-size: 16px;
    color: #333;
    width: 100%;
}

a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}