* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a0e;
    color: #fff;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1600456899121-68eda5705257?ixlib=rb-1.2.1&auto=format&fit=crop&w=2100&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255, 100, 50, 0.2), transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 204, 1, 0.1), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

header {
    background-color: rgba(10, 10, 14, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid #ffcc01;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 204, 1, 0.5));
}

.roobet-logo {
    height: 30px;
    margin-right: 10px;
    filter: drop-shadow(0 0 8px rgba(255, 204, 1, 0.7));
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: #ffcc01;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc01;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.container {
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(18, 18, 18, 0.9);
    border-radius: 10px;
    border: 1px solid #ffcc01;
    box-shadow: 0 0 20px rgba(255, 204, 1, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Added to accommodate the header */
}

.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    opacity: 0.05;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ffcc01, #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.coming-soon {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffcc01;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.countdown {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffcc01;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ffcc01;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 204, 1, 0.5);
    background-color: #ffcc01;
    color: #121212;
}

.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #ffcc01, #ffaa00);
    color: #0a0a0e;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 204, 1, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 204, 1, 0.7);
}

.logo {
    width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
}

.kangaroo-image {
    max-width: 200px;
    margin: 0 auto 2rem;
    border-radius: 10px;
    border: 2px solid #ffcc01;
}

.fire-particle {
    position: fixed;
    bottom: -20px;
    background-color: rgba(255, 165, 0, 0.6);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: rise 8s infinite ease-in;
    z-index: -1;
}

@keyframes rise {
    0% {
        bottom: -20px;
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.2;
    }
    100% {
        bottom: 120vh;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .container {
        width: 90%;
        padding: 1.5rem;
        margin-top: 120px; /* Increased to accommodate the stacked header */
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .kangaroo-image {
        max-width: 150px;
    }
    
    .logo {
        width: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .copyright {
        order: 3;
    }
    
    footer {
        padding: 2rem 1rem 1.5rem;
    }
}

/* Footer Styles */
footer {
    background-color: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 204, 1, 0.2);
    padding: 2rem 2rem 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.footer-column h3 {
    color: #ffcc01;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ffcc01;
}

.footer-column p {
    color: #b0b0b0;
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffcc01;
    transform: translateX(5px);
}

.footer-bottom {
    width: 100%;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b0b0b0;
    font-size: 0.8rem;
}

.footer-logo {
    width: 80px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #b0b0b0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ffcc01;
    transform: translateY(-3px);
}

.play-now-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-now-btn {
    position: inherit;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(420deg, rgb(255, 206, 0) 0%, rgb(255, 206, 0) 49%, rgb(238, 175, 14) 49%, rgb(238, 175, 14) 100%) left center / 100% 100% no-repeat;
    padding: 6px 14px 10px;
    color: #ffffff;
    -webkit-text-stroke-color: #C56A18;
    stroke: #1a1a2e;
    stroke-width: 2px;
    width: 260px !important;
    height: 50px !important;
}

.play-now-btn:hover {            
    background-size: 180% 100%;
}

