body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.start-container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    text-align: center;
    color: #f0f0f0;
    position: relative;
}

h1 {
    color: #f39c12;
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #d35400;
}

.instagram-link {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
}

.instagram-link img {
    width: 24px;
    height: 24px;
}