body {
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', sans-serif;
    background: url('../img/padel-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    height: 100vh;
    overflow: hidden;
}

.intro-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 56px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    font-size: 22px;
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-button {
    background-color: #00cc88;
    color: #fff;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.menu-button:hover {
    background-color: #00aa77;
    transform: scale(1.05);
}
