* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('../images/background.jpg') center center/cover no-repeat fixed;
    color: white;
    position: relative;
}

/* Background overlay for better text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.header {
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
}

.logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.etsy-button {
    background-color: white;
    color: black;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.etsy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.gaming-section {
    margin-bottom: 2rem;
}

.gaming-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.game-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.game-button {
    background-color: #4EA62B;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.game-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background-color: #3d8a22;
}

.footer {
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

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

    .logo {
        max-width: 250px;
    }

    .main-content {
        padding: 20px 15px;
    }

    .etsy-button, .game-button {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 180px;
    }

    .gaming-title {
        font-size: 1.2rem;
    }
}

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

    .logo {
        max-width: 200px;
    }

    .etsy-button, .game-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 160px;
    }

    .gaming-title {
        font-size: 1rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .main-content {
        padding: 20px;
    }

    .title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .etsy-button {
        margin-bottom: 1.5rem;
    }

    .gaming-section {
        margin-bottom: 1rem;
    }
}
