@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    overflow-x: hidden;
}

header {
    background: #0f1923;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    margin-left: 30px;
    font-weight: 600;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin-right: 30px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Betting-Against-The-Spread-no-logo.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 200px 20px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.btn {
    background-color: #ffcc00;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: bold;
    animation: fadeInUp 1.4s ease-out;
}

.btn:hover {
    background-color: #e6b800;
    transform: translateY(-5px);
}

section {
    padding: 80px 20px;
    text-align: center;
}

.about, .contact {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: -100px 20px 20px;
    padding: 80px;
    transform: translateY(100px);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.betting {
    background-color: #eaf4fc;
    border-radius: 10px;
    margin: 20px;
    padding: 80px;
}

footer {
    background: #0f1923;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.contact-buttons {
    margin-top: 20px;
}

.whatsapp-btn, .telegram-btn {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.telegram-btn {
    background-color: #0088cc;
    color: #fff;
}

.whatsapp-btn:hover, .telegram-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn:active, .telegram-btn:active {
    transform: scale(0.95);
}


.contact-buttons a .fab {
    margin-right: 8px;
}
