.header {
    background-color: #000;
    padding: 10px 60px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #333;
    position: sticky;
    top: 0;
    z-index: 999;
    border-radius: 8px 8px 0 0; 
}

.logo {
    height: 70px;
  width: auto;
}

.nav-menu {
    display: flex;
    justify-content: flex-end; 
    align-items: center;       
    gap: 30px;
    flex: 1;
    margin-left: 40px;
    margin-right: 50px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link.active {
    color: #ff0000;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #333;
    color: #ff0000;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Common styles for both buttons */
.register-btn {
  display: inline-block;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  min-width: 120px;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  height: 42px;
  box-sizing: border-box;
  vertical-align: middle;
  transition: background-color 0.3s ease;
  position: relative;
  top: 1px; 
}

.download-btn-main {
  background-color: #fff;
  color: #000;
  padding: 10px 30px;              
  font-size: 14px;                
  font-weight: bold;
  border: none;
  border-radius: 6px;
  min-width: 120px;
  height: 42px;
  line-height: 1;                  
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;           
  justify-content: center;
  transition: background-color 0.3s ease;
  vertical-align: middle;
  margin-top: 20px !important;       
}

/* Red Register button */
.register-btn {
  background-color: #ff0000;
  color: #fff;
}

.register-btn:hover {
  background-color: #e60000;
}

/* White Download button */
.download-btn-main {
  background-color: #fff;
  color: #000;
}





/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #000;
        border-top: 1px solid #333;
        padding: 0;
        gap: 0;
        margin-left: 0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .right-section {
        width: 100%;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
        order: 3;
    }

    .register-btn,
    .download-btn {
        flex: 1;
        max-width: 150px;
        padding: 12px 16px;
        font-size: 13px;
    }


    .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #333;
        margin-top: 0;
        border-radius: 0;
        padding: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #333;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 20px;
        font-size: 16px;
        border: none;
        justify-content: space-between;
    }

    .nav-item.dropdown-active .dropdown-menu {
        display: block;
    }

    .nav-item.dropdown-active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .header {
        padding: 8px 10px;
    }

    .register-btn,
    .download-btn {
        padding: 10px 12px;
        font-size: 12px;
        min-width: 80px;
    }

    .logo {
        font-size: 18px;
    }

    .logo span {
        font-size: 16px;
        padding: 2px 5px;
    }
}


body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f4f1;
    color: white;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 30px 20px;
    background-color: #1c1c1c;
    ;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

p {
    font-size: 16px;
    color: #cfcfcf;
    line-height: 1.6;
 
}

.section-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
    padding: 20px;
}

.bonus-card {
    background-color: #2b2b2b;
    width: 25%;
    min-width: 220px;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.image-box {
    width: 60%;
    position: relative;
}

.image-box img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 30px;
}


.bonus-card h3 {
    color: #ffc107;
    font-size: 15px;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bonus-amount {
    background: #000;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.bonus-card p {
    margin: 10px 0;
    font-size: 14px;
    color: #ccc;
}

.bonus-card span {
    color: #f44336;
    font-weight: bold;
}

.promo-box {
    background-color: #1a1a1a;
    border-radius: 5px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.promo-code {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.copy-btn {
    background-color: #444;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 13px;
}
.register-btn {
    margin-top: 20px;
    width: 100%;
    background-color: #f44336; 
    color: #000;              
    font-weight: 700;
    font-size: 16px;
    padding: 12px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.register-btn:hover {
    background-color: #d32f2f;
}



.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: bold;
    font-size: 22px;
    text-shadow: 1px 1px 3px black;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }

    .bonus-box,
    .image-box {
        width: 100%;
    }
}


.feature-menu {
    display: flex;
    gap: 16px;
    padding: 10px;
    background-color: #f2f0eb;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    background-color: #1c1c1c;
    border-radius: 10px;
    padding: 15px 10px;
    width: 120px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s;
    margin-top: 20px;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: #2b2b2b;
}

.feature-item img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
}
.table-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    font-family: Arial, sans-serif;
    overflow-x: auto; 
    box-sizing: border-box;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table-container {
        padding: 12px;
    }

    .table-container table {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .table-container {
        padding: 8px;
    }

    .table-container table {
        font-size: 13px;
    }
}


.table-container h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #1c1c1c;
}

.table-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.table-links button {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.table-links button:hover {
    background-color: #f0f0f0;
}

.sports-container {
    max-width: 1200px;
    margin: 30px auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sports-header {
    background: #2c2c2c;
    color: white;
    padding: 15px 25px;
    font-size: 20px;
    font-weight: bold;
}

.sports-header::before {
    content: "🏁 ";
    margin-right: 8px;
}

.main-content {
    display: flex;
    height: 400px;
}

.sports-grid {
    flex: 1;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sport-card {
    background: #f5f5f5;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sport-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sport-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.sport-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.esports-card {
    background: #3b82f6;
    color: white;
}

.esports-card .sport-name {
    color: white;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        height: auto;
    }

    .left-panel {
        width: 100%;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.bonus-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bonus-header  {
    background: #2c2c2c;
    color: white;
    padding: 8px 25px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.bonus-header::before {
    background: #4169e1;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 16px;
}

.main-content {
    display: flex;
    min-height: 500px;
}

.left-content {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
}

.description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bonus-list {
    margin-bottom: 30px;
}

.bonus-list ul {
    list-style: none;
    padding: 0;
}

.bonus-list li {
    color: #333;
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.bonus-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bonus-list strong {
    font-weight: bold;
}

.start-button {
    background: #f44336;
    color: #333;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.start-button:hover {
    background: #f39c12;
}

.right-banner {
    width: 100%;
    max-width: 600px;
    /* Set a max width */
    margin: auto;
    /* Center the whole box */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    margin-right: 80px;
    border-radius: 20px;
}




@media (max-width: 768px) {
    .right-banner {
        padding: 30px 15px;
    }

    .banner-image {
        width: 100%;
        max-width: 90%;
    }
}



@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .right-banner {
        width: 100%;
        height: 300px;
    }

    .parimatch-logo {
        font-size: 36px;
    }

    .active-bonus-text {
        font-size: 24px;
    }
}



.bonus-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    padding: 20px;
    max-width: 1170px;
    align-items: center;
}

.bonus-text {
    flex: 1 1 55%;
    padding: 20px;
}

.bonus-text h2 {
    background: #2c2c2c;
    color: white;
    padding: 15px 25px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.bonus-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.bonus-image {
    flex: 1 1 40%;
    text-align: center;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .bonus-section {
        flex-direction: column;
        padding: 15px;
    }

    .bonus-text,
    .bonus-image {
        flex: 1 1 100%;
        padding: 10px 0;
        text-align: center;
    }

    .bonus-text h2 {
        font-size: 20px;
    }

    .bonus-text p {
        font-size: 14px;
    }
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(45deg, #ff0000, #ff7761);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.page-header p {
    color: white;
}

.content-block {
    background: #fff;
    margin: 30px 0;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
    color: #f8f9fa;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: none;
    padding-bottom: 10px;
    background: #0c0c0c;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ff7761;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block h2:before {
    content: "ℹ️";
    font-size: 1.2rem;
    background: #ff7761;
    color: white;
    padding: 8px;
    border-radius: 6px;
    display: inline-block;
}

.feature-image {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7761;
    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid #e9ecef;
}


.feature-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
    color: white;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    text-align: center;
    color: white;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: #f44336;
    margin-bottom: 8px;
}

.feature-item span {
    font-weight: 500;
    color: #fdfdfd;
}


.instruction-group {
    background: #f8f9fa;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 4px solid #ff7761;
}

.instruction-group h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.numbered-steps {
    list-style: none;
    counter-reset: step-counter;
}

.numbered-steps li {
    counter-increment: step-counter;
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    position: relative;
    padding-left: 50px;
}

.numbered-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 10px;
    background: #ff7761;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.action-btn {
    background: linear-gradient(45deg, #ff0000, #ff7761);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    margin: 20px 0;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.action-btn:hover {
    background: linear-gradient(45deg, #ff7761, #ff0000);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.payment-option {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    color: #000;
}

.reward-card {
    background: #f8f9fa;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.reward-card h4 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.question-answer {
    background: #f8f9fa;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 4px solid #ff7761;
}

p {
    color: #000;
}

li {
    color: #000;
}

.question-answer h4 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-note {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #ff7761;
    color: #000;
}

.info-note strong {
    color: #000;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .content-block {
        padding: 20px;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .main-wrapper {
        padding: 10px;
    }
}

/* footer */

.footerSection {
    background-color: #f44336;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footerContainer {
    max-width: 1000px;
    margin: 0 auto;
}

.footerLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footerLinks a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footerLinks a:hover {
    text-decoration: underline;
}

.footerCopy {
    font-size: 14px;
}

@media (max-width: 600px) {
    .footerLinks {
        flex-direction: column;
        gap: 10px;
    }
}

/* about */
.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    color: #000;
}

.section {
    margin-bottom: 25px;
    border: 2px solid #f44336;
    padding: 20px;
    background-color: #fff;
    /* Removed black background */
    color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out;
    line-height: 1.6;
}

.section h2 {
    color: #f44336;
    padding-bottom: 5px;
    font-size: 1.9em;
    transition: color 0.3s;

}

.section h2:hover {
    color: #ff3333;
}

.button {
    background-color: #f44336;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: bounce 1.5s infinite;
}

.button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.contact {

    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1.1em;
    border-top: 2px solid #f44336;
    animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* download page */
.apk-section {
    border: 2px solid red;
    border-radius: 10px;
    padding: 25px;
    margin: 20px auto;
    max-width: 1100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.apk-section h2 {
    color: #e53935;
    margin-bottom: 15px;
    font-size: 28px;
}

.apk-section p,
.apk-section li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.apk-section ul {
    padding-left: 20px;
}

.apk-section img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

.download-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #f0eeee;
    color: #881f1f;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .apk-section {
        padding: 15px;
    }

    .apk-section h2 {
        font-size: 24px;
    }

    .apk-section p,
    .apk-section li {
        font-size: 15px;
    }
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item p {
    margin: 5px 0;
}

/* contact page */
.containerContact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    color: #000;
}

.sectionContact {
    margin-bottom: 25px;
    border: 2px solid #f44336;
    padding: 20px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out;
    line-height: 1.6;
}

.sectionContact h2 {
    color: #f44336;
    padding-bottom: 5px;
    font-size: 1.9em;
    transition: color 0.3s;

}

.sectionContact h2:hover {
    color: #ff3333;
}

.buttonContact {
    background-color: #f44336;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: bounce 1.5s infinite;
}

.buttonContact:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.contactInfo {

    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1.1em;
    border-top: 2px solid #f44336;
    animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* disclaimber */

.containerDisclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    color: #000;
}

.sectionDisclaimer {
    margin-bottom: 25px;
    border: 2px solid #f44336;
    padding: 20px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out;
    line-height: 1.6;
}

.sectionDisclaimer h2 {
    color: #f44336;
    padding-bottom: 5px;
    font-size: 1.9em;
    transition: color 0.3s;

}

.sectionDisclaimer h2:hover {
    color: #ff3333;
}

.buttonDisclaimer {
    background-color: #f44336;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: bounce 1.5s infinite;
}

.buttonDisclaimer:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.contactInfoDisclaimer {

    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1.1em;
    border-top: 2px solid #f44336;
    animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* invite  code page */


.invite-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.invite-section {
    border: 2px solid #f44336;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.invite-section h1 {
    color: #000;
}

.invite-section h2,
.invite-section h3 {
    color: #f44336;
}

.invite-section ul {
    padding-left: 20px;
}

.invite-section ul li {
    margin-bottom: 8px;
}

.faq-section {
    background: #fff3f3;
    border: 1px solid #f44336;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.faq-section h2 {
    color: #d32f2f;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f44336;
    padding-bottom: 10px;
}

.faq-section h3 {
    color: black;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.faq-item p {
    margin: 0;
}

/* login page */


.container1 {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding-bottom: 40px;
}

.box {
    background: #fff;
    border: 2px solid #f44336;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 25px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.box h2 {
    color: #f44336;
    margin-bottom: 15px;
}

.box ul {
    padding-left: 20px;
}

.box li {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #f44336;
    color: #fff;
    padding: 20px 35px;
    text-align: center;
    align-items: center;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #d32f2f;
}

@media (max-width: 768px) {
    .box {
        padding: 20px;
    }
}

/* colour-tading */



.trading-section {
    border: 2px solid red;
    border-radius: 10px;
    padding: 25px;
    margin: 20px auto;
    max-width: 1100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.trading-section h2 {
    color: #e53935;
    font-size: 28px;
    margin-bottom: 15px;
}

.trading-section p,
.trading-section li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.trading-section ul {
    padding-left: 20px;
}

.trading-section img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

.download-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #e53935;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    margin: 15px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .trading-section {
        padding: 15px;
    }

    .trading-section h2 {
        font-size: 24px;
    }

    .trading-section p,
    .trading-section li {
        font-size: 15px;
    }
}


/* gift code */


.giftcode-section {
    border: 2px solid red;
    border-radius: 10px;
    padding: 25px;
    margin: 20px auto;
    max-width: 1100px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}

.giftcode-section h2 {
    color: #e53935;
    font-size: 28px;
    margin-bottom: 15px;
}

.giftcode-section h3 {
    color: #131212;
    font-size: 20px;
    margin-top: 25px;
}

.giftcode-section p,
.giftcode-section li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.giftcode-section ul {
    padding-left: 20px;
}

.giftcode-section img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .giftcode-section {
        padding: 15px;
    }

    .giftcode-section h2 {
        font-size: 24px;
    }

    .giftcode-section h3 {
        font-size: 18px;
    }

    .giftcode-section p,
    .giftcode-section li {
        font-size: 15px;
    }
}

/* aviator game  */

.aviator-section {
    border: 2px solid red;
    border-radius: 10px;
    padding: 25px;
    margin: 20px auto;
    max-width: 1100px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}

.aviator-section h2 {
    color: #e53935;
    font-size: 28px;
    margin-bottom: 15px;
}

.aviator-section h3 {
    color: #0f0f0f;
    font-size: 20px;
    margin-top: 25px;
}

.aviator-section p,
.aviator-section li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.aviator-section ul {
    padding-left: 20px;
}

.aviator-section img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .aviator-section {
        padding: 15px;
    }

    .aviator-section h2 {
        font-size: 24px;
    }

    .aviator-section h3 {
        font-size: 18px;
    }

    .aviator-section p,
    .aviator-section li {
        font-size: 15px;
    }
}

/* colour-prediction*/

.prediction-section {
    border: 2px solid red;
    border-radius: 10px;
    padding: 25px;
    margin: 20px auto;
    max-width: 1100px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}

.prediction-section h2 {
    color: #e53935;
    font-size: 28px;
    margin-bottom: 15px;
}

.prediction-section h3 {
    color: #0f0f0f;
    font-size: 20px;
    margin-top: 25px;
}

.prediction-section p,
.prediction-section li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.prediction-section ul {
    padding-left: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .prediction-section {
        padding: 15px;
    }

    .prediction-section h2 {
        font-size: 24px;
    }

    .prediction-section h3 {
        font-size: 18px;
    }

    .prediction-section p,
    .prediction-section li {
        font-size: 15px;
    }
}

/* teacher */

.teacher-section {
    border: 2px solid red;
    border-radius: 10px;
    max-width: 1100px;
    margin: 20px auto;
    padding: 30px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
    margin-bottom: 30px;
}



.teacher-section h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
}

.teacher-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d32f2f;
}

.teacher-section h3 {
    font-size: 20px;
    margin-top: 25px;
    color: #000;
}

.teacher-section p,
.teacher-section li {
    font-size: 16px;
    line-height: 1.6;
}

.teacher-section ul {
    padding-left: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .teacher-section {
        padding: 15px;
    }

    .teacher-section h1 {
        font-size: 24px;
    }

    .teacher-section h2 {
        font-size: 20px;
    }

    .teacher-section h3 {
        font-size: 18px;
    }

    .teacher-section p,
    .teacher-section li {
        font-size: 15px;
    }
}

/* support */

.support-section {
    border: 2px solid red;
    border-radius: 10px;
    max-width: 1100px;
    margin: 20px auto;
    padding: 30px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
    margin-bottom: 30px;
}

.support-section h2 {
    color: #d32f2f;
    font-size: 28px;
    margin-bottom: 15px;
}

.support-section h1 {
    color: #161616;
    font-size: 30px;
    margin-bottom: 15px;
}

.support-section h3 {
    color: #161616;
    font-size: 22px;
    margin-top: 25px;
}

.support-section p,
.support-section li {
    font-size: 16px;
    line-height: 1.6;
}

.support-section ul {
    padding-left: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .support-section {
        padding: 15px;
    }

    .support-section h2 {
        font-size: 24px;
    }

    .support-section h3 {
        font-size: 18px;
    }

    .support-section p,
    .support-section li {
        font-size: 15px;
    }
}

/* register */
.registerHeader {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #000;
}

.registerContainer {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
}

section.registerSection {
    background-color: #fff;
    border: 2px solid #f44336;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

section.registerSection:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section.registerSection h3 {
    color: #f44336;
    margin-top: 0;
}

section.registerSection h2 {
    color: #f44336;
    margin-top: 0;
}

.registerSection ul {
    padding-left: 20px;
}

.registerSection li {
    margin-bottom: 8px;
}

.registerBtn {
    background-color: #f44336;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
}

.registerStepImg {
    width: 100%;
    max-width: 500px;
    margin: 15px 0;
    display: block;
    border-radius: 8px;
    border: 1px solid #ccc;
}

@media (max-width: 768px) {
    .registerSection {
        padding: 20px;
    }

    .registerHeader h1 {
        font-size: 2rem;
    }
}

/* lottery */

.lotteryHeader {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

h1 {

    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #000;
}

.lotteryContainer {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
}

section.lotterySection {
    background-color: #fff;
    border: 2px solid #f44336;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

section.lotterySection:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section.lotterySection h2,
section.lotterySection h3 {
    color: #f44336;
    margin-top: 0;
}

.lotterySection ul {
    padding-left: 20px;
}

.lotterySection li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .lotterySection {
        padding: 20px;
    }

    .lotteryHeader h1 {
        font-size: 2rem;
    }
}

/* privacy-policy */
.headerPrivacy {
    background-color: #131212;
    color: #fff;
    padding: 40px;
    text-align: center;
    border-bottom: 5px solid #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in;
}

.headerPrivacy h1 {
    font-size: 2.5em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.containerPrivacy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    color: #000;
}

.sectionPrivacy {
    margin-bottom: 25px;
    border: 2px solid #f44336;
    padding: 20px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out;
    line-height: 1.6;
}

.sectionPrivacy h2 {
    color: #f44336;
    padding-bottom: 5px;
    font-size: 1.9em;
    transition: color 0.3s;
}

.sectionPrivacy h2:hover {
    color: #ff3333;
}

.buttonPrivacy {
    background-color: #f44336;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: bounce 1.5s infinite;
}

.buttonPrivacy:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.contactInfoPrivacy {

    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1.1em;
    border-top: 2px solid #f44336;
    animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* term-condition */

.headerTerms {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.headerTerms h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.containerTerms {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
}

.sectionTerms {
    background-color: #fff;
    border: 2px solid #f44336;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sectionTerms:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sectionTerms h2 {
    color: #f44336;
    margin-top: 0;
}

.sectionTerms ul {
    padding-left: 20px;
}

.sectionTerms li {
    margin-bottom: 8px;
}

.contactInfoTerms {
    text-align: center;
    padding: 20px;
    font-weight: bold;
    color: #000;
}

@media (max-width: 768px) {
    .sectionTerms {
        padding: 20px;
    }

    .headerTerms h1 {
        font-size: 2rem;
    }
}