:root {
    --teal: #499CA6;
    --light-yellow: #F2E5A2;
    --orange: #F2762E;
    --red: #D91604;
    --pink: #D98282;
    --dark: #212529;
    --light: #f8f9fa;
}

/* General Styles */
body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    /* Remove padding-top to make header part of the gradient */
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

.brand-name {
    color: white;
}

.brand-io {
    color: var(--orange);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--orange);
}

.navbar-dark .navbar-nav .nav-link.btn {
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

a {
    color: var(--orange);
    text-decoration:none;
}

a:hover {
    color: var(--red);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--orange);
}

/* Button Styles */
.btn-primary {
    background-color: var(--orange);
    border-color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-close-page {
    color: var(--dark);
    position: fixed;
}

.btn-close-page:hover {
    color: var(--red);
}

/* Hero Section */
#hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Reduced padding since we removed the header */
}

/* Four color corners */
#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Top left - teal */
        linear-gradient(to bottom right, rgba(73, 156, 166, 0.7) 0%, transparent 40%),
        /* Top right - yellow */
        linear-gradient(to bottom left, rgba(242, 229, 162, 0.7) 0%, transparent 40%),
        /* Bottom left - orange */
        linear-gradient(to top right, rgba(242, 118, 46, 0.7) 0%, transparent 40%),
        /* Bottom right - red */
        linear-gradient(to top left, rgba(217, 22, 4, 0.7) 0%, transparent 40%);
    z-index: 0;
}

/* White frame */
.hero-frame {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 50px 40px 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 90%;
    width: 800px;
    margin-top: 60px; /* Space for logo to straddle the top */
    z-index: 2;
}

/* Frame border */
.hero-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    pointer-events: none;
}

/* Logo position */
.hero-logo {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 2.8rem;
    text-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.hero-logo .brand-name {
    font-weight: 800; 
    color: white;
}

.hero-logo .brand-io {
    font-weight: 800;
    /*color: var(--orange);*/
    
    background-color: #499CA6;
     background-image: linear-gradient(
        45deg,
        var(--teal) 20%, 
        var(--light-yellow) 40%, 
        var(--orange) 60%, 
        var(--red) 80%);
 
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: none;
}

.logo {
    position: relative;
    width: 80px;
    height: 80px;
    float: left;
    margin: 0 40px 0 0;
}

.square {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 3px solid;
    border-radius: 50px;
}

.square1 {
    width: 30%;
    height: 30%;
    border-color: var(--teal);
}

.square2 {
    width: 45%;
    height: 45%;
    border-color: var(--pink);
    transform: translate(-50%, -50%) rotate(45deg);
}

.square3 {
    width: 65%;
    height: 65%;
    border-color: var(--orange);
}

.square4 {
    width: 100%;
    height: 100%;
    border-color: var(--red);
    transform: translate(-50%, -50%) rotate(45deg);
 }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

/* Features Section */
#features-section {
    background-color: var(--light);
}

#features-section .section-title:after {
    background-color: var(--dark);
}

.feature-card {
    padding: 30px;
    height: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-teal {
    background: linear-gradient(135deg, var(--teal) 0%, #72bcc5 100%);
}

.feature-yellow {
    background: linear-gradient(135deg, var(--light-yellow) 0%, #f8efcc 100%);
}

.feature-orange {
    background: linear-gradient(135deg, var(--orange) 0%, #f9a47a 100%);
}

.feature-red {
    background: linear-gradient(135deg, var(--red) 0%, #f54d3f 100%);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-text {
    /*color: rgba(var(--dark), 0.6);*/
    font-size: 1.1rem;
}

.feature-teal .feature-icon, .feature-teal .feature-title {
    color: #3E4F51;
}

.feature-yellow .feature-icon, .feature-yellow .feature-title {
    color: #9D987D;
}

.feature-orange .feature-icon, .feature-orange .feature-title {
    color: #9D6E52;
}

.feature-red .feature-icon, .feature-red .feature-title {
    color: #84362F;
}

/* Cashprize Section */
#cashprize-section {
    background-color: var(--dark);
    color: var(--light);
}

.cashprize-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cashprize-card:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.15);
}

#cashprize-section .bi, #cashprize-section .display-3 {
    color: var(--orange);
}

.cashprize-logo {
    font-size: 4rem;
}

#cashprize-section h3 {
    color: var(--orange);
}

/* Games Section */
#games-section {
    background-color: var(--light-yellow);
}

#games-section .section-title:after {
    background-color: var(--pink);
}

#games-section .card {
    border-radius: 10px;
    transition: all 0.3s ease;
    border:0;
}

#games-section .card:hover {
    transform: scale(1.05);
}

.game-description {
    background: color-mix(in srgb, var(--light-yellow) 50%, transparent);
}

#games-section .bi {
    color: var(--pink);
}

.game-coming-soon {
    background-color: var(--pink);
    color: white;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
}

/* FAQ Section */
#faq-section {
    background-color: var(--light);
}

#faq-section .section-title:after {
    background-color: var(--teal);
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    background-color: white;
    color: var(--dark);
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--teal);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--teal);
}

.accordion-body {
    padding: 20px;
    background-color: white;
}

/* Register Section */
#register-section {
    background: linear-gradient(135deg, var(--teal) 0%, #2d7d86 100%);
    color: white;
}

#register-section .section-title:after {
    background-color: #fff;
}

.register-offer {
    background-color: var(--orange);
    color: white;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.register-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.form-label {
    color: white;
    font-weight: 500;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 4px;
    height: 50px;
    font-size: 1.1rem;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
    background-color: white;
}

.form-check-label {
    color: white;
}

/* Game checkboxes */
.register-form .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
}

.register-form .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.register-form .form-check-label {
    font-size: 1.1rem;
    padding-left: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 40px 0;
}

.footer-links a {
    color: var(--light);
    margin-right: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--red);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .hero-frame {
        padding: 40px 30px 30px;
        margin-top: 50px;
        max-width: 95%;
    }
    
    .hero-lines {
        left: 5%;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        top:-45%;
    }
  
    .hero-frame {
        padding: 35px 20px 25px;
        margin-top: 40px;
    }
  
    .logo {
        width: 50px;
        height: 50px;
	    left: 40%;
    }

    .square {
    	border-width: 2px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }    
    
    .social-links, .footer-links, .footer-rights {
        text-align: center;
        margin-top: 15px;
    }
}

/* Alert Styles */
.alert {
    border-radius: 0;
    margin-bottom: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
