/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #161616;
    background-color: #ecd1dd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #d75775;
}

h2 {
    font-size: 2rem;
    color: #d75775;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
}

p {
    margin-bottom: 1rem;
    color: #2d2d2d;
}

a {
    color: #d75775;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff8cbb;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

header .btn-primary {
    background: #d75775;
    color: #161616;
}

.btn-primary {
    background-color: #161616;
    color: #d75775;
}

.btn-primary:hover {
    background-color: #d75775;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 87, 117, 0.3);
}

.hero .btn-secondary {
    background: #ecd1dd;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #d75775;
    color: #d75775;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    color: #d75775;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Header */
.header {
    background-color: #161616;
    padding: 1rem 0;
    padding-top: 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-list a:hover,
.nav-list a.active {
    color: #ff8cbb;
    background-color: rgba(255, 140, 187, 0.1);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

section .btn-primary:hover {
    color: #161616;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 195, 219, 0.8);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    color: #161616;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2d2d2d;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 4rem 0;
}

.app-section {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 20px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.how-to-start {
    background-color: rgba(255, 140, 187, 0.8);
    border: 2px solid white;
    border-radius: 20px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    color: white;
}

.how-to-start .step {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 20px;
}

.how-to-start .step p {
    color: #161616;
}

.how-to-start h2,
.how-to-start p {
    color: white;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-features-image {
    text-align: center;
    margin: 3rem 0;
}

.app-features-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #161616;
    margin-bottom: 1rem;
}

/* Highlights Table */
.highlights-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.highlight-icon i {
    font-size: 2.5rem;
    color: #ff8cbb;
}

.highlight-content h3 {
    color: #161616;
    margin-bottom: 0.5rem;
}

/* App Section */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Home Page Image Sections */
.bonus-image,
.strategy-image {
    text-align: center;
    margin: 3rem 0;
}

.bonus-image img,
.strategy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.bonus-image img:hover,
.strategy-image img:hover {
    transform: scale(1.02);
}

.app-text h3 {
    color: #161616;
    margin: 1.5rem 0 1rem 0;
}

.app-text ul {
    list-style: none;
    margin-left: 1rem;
}

.app-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.app-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Bonuses Table */
.bonuses-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-item h3 {
    color: #161616;
    margin-bottom: 1rem;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #ff8cbb;
    color: #161616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

/* Strategies Grid */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strategy {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.strategy i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.description {
    text-align: center;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.faq-item h3 {
    color: #161616;
    margin-bottom: 1rem;
}

/* Login Page Specific Styles */
.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.login-step {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.login-step h3 {
    color: #161616;
    font-size: 1rem;
    margin-top: 1rem;
}

.mobile-login .container{
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 20px;
    margin: 2rem auto;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.mobile-login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-login-text h3 {
    color: #161616;
    margin: 1.5rem 0 1rem 0;
}

.mobile-login-text ul {
    list-style: none;
    margin-left: 1rem;
}

.mobile-login-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.mobile-login-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.mobile-login-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Login Page Additional Images */
.login-image,
.why-login-image {
    text-align: center;
    margin: 3rem 0;
}

.login-image img,
.why-login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.login-image img:hover,
.why-login-image img:hover {
    transform: scale(1.02);
}

.troubleshooting .container{
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 20px;
    margin: 2rem auto;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.troubleshooting-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.trouble-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.trouble-item h3 {
    color: #161616;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}


.why-login .container{
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 20px;
    margin: 2rem auto;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.important-note {
    background-color: rgba(255, 140, 187, 0.8);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.important-note p {
    color: white;
    margin-bottom: 1rem;
}

.important-note p:last-child {
    margin-bottom: 0;
}

/* App Page Specific Styles */
.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.download-step {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.download-step h3 {
    font-size: 1rem;
}

.why-play-content,
.sports-betting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-play-text h3,
.sports-betting-text h3 {
    color: #161616;
    margin: 1.5rem 0 1rem 0;
}

.why-play-text ul,
.sports-betting-text ul {
    list-style: none;
    margin-left: 1rem;
}

.why-play-text li,
.sports-betting-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.why-play-text li:before,
.sports-betting-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.why-play-image img,
.sports-betting-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.apk-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.apk-step {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.apk-step h3 {
    font-size: 1rem;
}

.apk-advantages {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.apk-advantages ul {
    list-style: none;
    margin-left: 1rem;
}

.apk-advantages li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.apk-advantages li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

/* Games Page Specific Styles */
.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.game-category {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.game-category i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.game-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.game-item img {
    width: 100%;
    height: auto;
    display: block;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    color: #161616;
    margin-bottom: 1rem;
}

.game-info p {
    margin-bottom: 0.5rem;
}

.mobile-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.benefit i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.crash-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.crash-feature {
    text-align: center;
    padding: 2rem;
}

.crash-feature i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.live-games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-game {
    text-align: center;
    padding: 2rem;
}

.live-game i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

/* Slots Page Specific Styles */
.player-favorites {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.player-favorites ul {
    list-style: none;
    margin-left: 1rem;
}

.player-favorites li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.player-favorites li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.slot-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.slot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.slot-info {
    padding: 2rem;
}

.slot-info h3 {
    color: #161616;
    margin-bottom: 1rem;
}

.slot-info p {
    margin-bottom: 0.5rem;
}

.winning-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strategy {
    text-align: center;
    padding: 2rem;
}

.strategy i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.jackpot-slots {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.jackpot-slots ul {
    list-style: none;
    margin-left: 1rem;
}

.jackpot-slots li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.jackpot-slots li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.why-progressive {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.why-progressive ul {
    list-style: none;
    margin-left: 1rem;
}

.why-progressive li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.why-progressive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

/* Bonus Page Specific Styles */
.bonus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-category {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bonus-category i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.claim-step {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.claim-step h3 {
    font-size: 1rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.term-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.term-item i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.celebrating-content,
.high-roller-content,
.lucky-asian-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.celebrating-text h3,
.high-roller-text h3,
.lucky-asian-text h3 {
    color: #161616;
    margin: 1.5rem 0 1rem 0;
}

.celebrating-text ul,
.high-roller-text ul,
.lucky-asian-text ul {
    list-style: none;
    margin-left: 1rem;
}

.celebrating-text li,
.high-roller-text li,
.lucky-asian-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.celebrating-text li:before,
.high-roller-text li:before,
.lucky-asian-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.celebrating-image img,
.high-roller-image img,
.lucky-asian-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Betting Page Specific Styles */
.betting-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.betting-step {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.betting-step h3 {
    font-size: 1rem;
}

.cricket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cricket-feature {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cricket-feature i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.markets-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 3rem 0;
}

.market-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.betting-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.cricket-players-content,
.female-cricket-content,
.stadium-betting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cricket-players-text h3,
.female-cricket-text h3,
.stadium-betting-text h3 {
    color: #161616;
    margin: 1.5rem 0 1rem 0;
}

.cricket-players-text ul,
.female-cricket-text ul,
.stadium-betting-text ul {
    list-style: none;
    margin-left: 1rem;
}

.cricket-players-text li,
.female-cricket-text li,
.stadium-betting-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.cricket-players-text li:before,
.female-cricket-text li:before,
.stadium-betting-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.cricket-players-image img,
.female-cricket-image img,
.stadium-betting-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Aviator Page Specific Styles */
.gameplay-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gameplay-step {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.gameplay-step h3 {
    font-size: 1rem;
}

.strategies-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 3rem 0;
}

.strategy-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.aviator-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.aviator-benefit {
    text-align: center;
    padding: 2rem;
}

.aviator-benefit i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.mobile-aviator-content,
.aviator-interface-content,
.male-character-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-aviator-text h3,
.aviator-interface-text h3,
.male-character-text h3 {
    color: #161616;
    margin: 1.5rem 0 1rem 0;
}

.mobile-aviator-text ul,
.aviator-interface-text ul,
.male-character-text ul {
    list-style: none;
    margin-left: 1rem;
}

.mobile-aviator-text li,
.aviator-interface-text li,
.male-character-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.mobile-aviator-text li:before,
.aviator-interface-text li:before,
.male-character-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.mobile-aviator-image img,
.aviator-interface-image img,
.male-character-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Live Casino Page Specific Styles */
.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-game {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.live-game i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.live-play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

header .container{
    max-width: unset;
}

.live-play-step {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.live-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-feature {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.live-feature i {
    font-size: 3rem;
    color: #ff8cbb;
    margin-bottom: 1rem;
}

.providers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.provider {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.uk-casino-content,
.online-slot-content,
.sports-betting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.uk-casino-text h3,
.online-slot-text h3,
.sports-betting-text h3 {
    color: #161616;
    margin: 1.5rem 0 1rem 0;
}

.uk-casino-text ul,
.online-slot-text ul,
.sports-betting-text ul {
    list-style: none;
    margin-left: 1rem;
}

.uk-casino-text li,
.online-slot-text li,
.sports-betting-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.uk-casino-text li:before,
.online-slot-text li:before,
.sports-betting-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8cbb;
    font-weight: bold;
}

.uk-casino-image img,
.online-slot-image img,
.sports-betting-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.live-bonuses-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-bonus-item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.live-bonus-item:hover {
    transform: translateY(-5px);
}

.live-bonus-item h3 {
    color: #161616;
    margin-bottom: 1rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-text {
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

/* Footer */
.footer {
    background-color: #161616;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-section p {
    color: white;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .app-content,
    .mobile-login-content,
    .why-play-content,
    .sports-betting-content,
    .celebrating-content,
    .high-roller-content,
    .lucky-asian-content,
    .cricket-players-content,
    .female-cricket-content,
    .stadium-betting-content,
    .mobile-aviator-content,
    .aviator-interface-content,
    .male-character-content,
    .uk-casino-content,
    .online-slot-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1440px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {

    .nav.active .nav-list {
        gap: 10px !important;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .highlights-table,
    .bonuses-table,
    .steps,
    .strategies-grid,
    .login-steps,
    .troubleshooting-table,
    .download-steps,
    .games-categories,
    .games-grid,
    .mobile-benefits,
    .crash-features,
    .live-games-list,
    .player-favorites,
    .slots-grid,
    .winning-strategies,
    .bonus-categories,
    .claim-steps,
    .terms-grid,
    .betting-steps,
    .cricket-features,
    .markets-table,
    .betting-benefits,
    .gameplay-steps,
    .strategies-table,
    .aviator-benefits,
    .live-games-grid,
    .live-play-steps,
    .live-features-grid,
    .providers-list,
    .live-bonuses-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature,
    .highlight-item,
    .bonus-item,
    .step,
    .strategy,
    .faq-item,
    .login-step,
    .trouble-item,
    .download-step,
    .game-category,
    .game-item,
    .benefit,
    .crash-feature,
    .live-game,
    .slot-item,
    .bonus-category,
    .claim-step,
    .term-item,
    .betting-step,
    .cricket-feature,
    .market-item,
    .aviator-benefit,
    .gameplay-step,
    .strategy-item,
    .live-feature,
    .provider,
    .live-bonus-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav.active {
        overflow: scroll;
        max-height: 450px;
    }
}

/* Mobile Menu */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 111111;
    right: 0;
    background-color: #161616;
    padding: 1rem;
}

.nav.active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.nav.active .nav-list a {
    display: block;
    padding: 1rem;
    border-radius: 10px;
}

@media (max-width: 450px) {
    .header-buttons {
        gap: 10px;
    }

    .logo img {
        height: 25px;
    }

    header .btn {
        font-size: 12px;
        padding: 4px 14px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #ff8cbb;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature,
.highlight-item,
.bonus-item,
.step,
.strategy,
.login-step,
.trouble-item,
.download-step,
.game-category,
.game-item,
.benefit,
.crash-feature,
.live-game,
.slot-item,
.bonus-category,
.claim-step,
.term-item,
.betting-step,
.cricket-feature,
.market-item,
.aviator-benefit,
.gameplay-step,
.strategy-item,
.live-feature,
.provider,
.live-bonus-item {
    animation: fadeIn 0.6s ease-out;
} 