/* Main Styles */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
    background-color: #0D0D0D;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.3s ease;
}
.sticky-header .singup-btn{
    width: max-content;
    margin: 0 20px;
}
/* Add top padding to body to account for sticky header */
body {
    padding-top: 80px;
}

/* Banner Section with Video Background */
.banner-section {
    position: relative;
    width: 100%;
    height: 612px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -100px;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0% 100%);
}
.coin-hand-image{
    margin-bottom: -120px;
}
/* Dark overlay for better text readability */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-text {
    text-align: left;
}

.main-title {
    color: var(--white, #FFF);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 71px;
    /* 147.917% */
    text-transform: uppercase;
}

.sub-title {
    color: #00FFC2;
    font-family: Oswald;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 71px;
    /* 73.958% */
    text-transform: uppercase;
}

.banner-graphics {
    display: flex;
    align-items: center;
    justify-content: center;

}


@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Learning Modules Section Styles */
.learning-modules {
    background-color: #0D0D0D;
}

.learning-modules h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 71px;
    /* 177.5% */
    text-transform: uppercase;
}

.learning-modules p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 120% */
    max-width: 600px;
    margin: 0 auto;
}

.singup-btn {
    color: #0D0D0D;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #00FFC2;
    padding: 10px 40px;
    margin-top: 20px;
}

/* Gold Coins Section */
.gold-coins-section {
    background-color: #171717;
    min-height: 500px;
    margin-left: 30px;
    margin-bottom: 120px;
}

.gold-coins-section.left-content-section {
    clip-path: polygon(0% -10%, 100% -10%, 100% 100%, 90px 100%, 0% calc(100% - 90px));
}

.gold-coins-section.right-content-section {
    margin-left: 0px;
    margin-right: 30px;
    clip-path: polygon(0% -10%, 100% -10%, 100% calc(100% - 90px), calc(100% - 90px) 100%, 0% 100%);
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 60px 40px;
    width: 65%;
}


.text-content {
    flex: 1;
}

.title-line {
    display: block;
    color: #00FFC2;
    font-family: Oswald;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 59px;
    text-transform: uppercase;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin: 0;
}

.video-section {
    position: relative;
    /* height: 575px; */
    padding-top: 56.25%; /* 16:9 ratio (9/16 = 0.5625) */
    height: 0;    
    overflow: hidden;
}

.no-clip {
    clip-path:none;
}

.video-container {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 90px 100%, 0% calc(100% - 90px));
}

.right-content-section .video-container {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 90px), calc(100% - 90px) 100%, 0% 100%);
}

.video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-container:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button i {
    font-size: 32px;
    color: #000;
    margin-left: 4px;
}

.number-badge img {
    margin-top: -40px;
    max-height: 260px;
}

.left-content-section .content-wrapper,
.right-content-section .content-wrapper {
    padding: 0px 40px;
    width: 78%;
}

.play-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.footer-top-section {
    background:
        url("assets/footer-top.png");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: 700px
}

/* Footer Bottom Section */
.footer-bottom-section {
    background-color: #171717;
    color: white;
    padding: 60px 0 20px;
    margin-top: -110px;
    clip-path: polygon(110px 0, 100% 0, 100% 100%, 0% 100%, 0 120px);
}

.footer-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.casino-city-title {
    font-size: 32px;
    color: #00FFC2;
    margin-bottom: 20px;

    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 221.875% */
    text-transform: uppercase;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.follow-us-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #00FFC2;
    color: #000;
    border-color: #00FFC2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.70);
    font-weight: 400;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00FFC2;
}

.footer-divider {
    height: 1px;
    background: #333;
    margin: 40px 0;
}

.play-responsibly-section {
    margin: 40px 0;
    padding: 25px;
    background-color: #000;
}

.play-responsibly-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.responsibility-icon {
    flex-shrink: 0;
}

.responsibility-icon i {
    font-size: 24px;
    color: #00FFC2;
}

.responsibility-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.responsibility-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.responsibility-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.responsibility-link {
    color: #00FFC2;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.responsibility-link:hover {
    color: white;
}

.copyright-section {
    margin-top: 20px;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999;
    margin: 0;
}

video:not(.banner-video) {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    display:none;
}

.video-placeholder {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    display:none;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
}
