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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 100%);
    overflow: hidden;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 25%; /* Adjust size as needed */
    height: auto;
}

.logo-text {
    font-family: "Oleo Script", cursive, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.buttons-container {
    display: flex;
    gap: 40px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.btn:hover:before {
    left: 100%;
}

.btn-icon {
    font-size: 24px;
}

.live-btn:hover, .video-btn:hover {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

@media (max-width: 600px) {
    .buttons-container {
        flex-direction: column;
    }
    
    .logo-text {
        font-size: 38px;
    }
}
.subtitle {
    font-size: 20px;
    color: rgba(200, 200, 200, 0.7); /* Slightly darker than title */
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}
