
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', 'Inter', sans-serif;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #56008b 0%, #000000 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h1.hero-title {
    /* Other styles */
    font-size: 40px; /* Add this line */
  }
  h2 {
    color: #ffff00;
  }
  h3{
    color: #ffd200;;
  }
p {
    margin-bottom: 1rem;
}

/* Icons */
.icon-solid {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-solid.small {
    width: 16px;
    height: 16px;
}

.icon-solid.large {
    width: 48px;
    height: 48px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d5057f, #ff0099);
    color: white;
    box-shadow: 0 4px 20px rgba(213, 5, 127, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(213, 5, 127, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffff00;
    border: 2px solid #ffff00;
}

.btn-secondary:hover {
    background: rgba(255, 255, 0, 0.1);
    box-shadow: 0 4px 20px rgba(255, 255, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 5px 10px;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 25, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d5057f;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d5057f, #ffff00);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
        left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #56008b 0%, #000000 100%);
}

.hero-bg::before {

}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: #ffff00;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-main {
    display: block;
    color: yellow;
}

.hero-title-sub {
    display: block;
    font-size: 0.6em;
    font-weight: 600;
    opacity: 0.9;
}

.hero-cashback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.cashback-text {
    font-weight: 500;
}

.cashback-percent {
    font-size: 2em;
    font-weight: 800;
    color: #ffff00;
    text-shadow: 0 2px 15px rgba(255, 255, 0, 0.5);
}

.cashback-daily {
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 2rem 0;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.feature-tag svg {
    width: 16px;
    height: 16px;
    fill: #ffff00;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 3rem 0;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffff00;
    display: block;
    text-shadow: 0 2px 10px rgba(255, 255, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: rgba(0,0,0,60%);
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffff00;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #d5057f, #ff0099);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(213, 5, 127, 0.3);
}

.game-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.game-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.game-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-count {
    display: inline-block;
    background: linear-gradient(135deg, #d5057f, #56008b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

.games-extra {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.extra-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.extra-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Promotions Section */
.promotions {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.promotion-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.promotion-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #d5057f, #ff0099);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(213, 5, 127, 0.3);
}

.promotion-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.promotion-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.promotion-value {
    font-size: 3em;
    font-weight: 800;
    background: linear-gradient(135deg, #d5057f, #ff0099);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(238, 87, 88, 0.3);
}

.promotion-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95em;
}

.promotion-extra {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.promotion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.promotion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.promotion-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.promotion-item svg {
    width: 20px;
    height: 20px;
    fill: #ffff00;
    flex-shrink: 0;
}

.promotion-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(0,0,0,0.2);
    position: relative;
}

.about-content {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-text {
    color: white;
    width: 100%;
}

.about-text-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: space-between;
}

.about-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    color: white;
    margin-bottom: 20px;
}

.about-item h3 {
    margin-top: 0px;
    margin-bottom: 15px;
}

.about-item p {
    margin-bottom: 15px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.features-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.features-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-showcase-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-showcase-img:hover {
    transform: scale(1.05);
}

.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-item svg {
    width: 30px;
    height: 30px;
    fill: #ffff00;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.feature-desc {
    opacity: 0.8;
    font-size: 0.9em;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    fill: rgba(255, 255, 255, 0.7);
}

.placeholder-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1.2em;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #000000 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.95em;
}

.footer-title {
    font-size: 1.2em;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a0aec0;
    font-size: 0.95em;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    fill: #d5057f;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
    font-size: 0.9em;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    color: #ffff00;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.badge svg {
    width: 14px;
    height: 14px;
    fill: #ffff00;
}

/* Recommended Games Section */
.recommended-games {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}


.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.recommended-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.recommended-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.recommended-card:hover::before {
    left: 100%;
}

.recommended-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.recommended-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #d5057f, #ff0099);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommended-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.recommended-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.recommended-provider {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin-bottom: 15px;
    font-weight: 500;
}

.recommended-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.recommended-rating svg {
    width: 16px;
    height: 16px;
    fill: #ffff00;
}

.recommended-rating span {
    color: #ffffff;
    font-weight: 600;
}

.recommended-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95em;
}

.recommended-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-badge {
    background: linear-gradient(135deg, #d5057f, #56008b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    white-space: nowrap;
}

/* Game Providers Section */
.providers {
    padding: 80px 0;
    background: rgba(0,0,0,0.2);
    position: relative;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.provider-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.provider-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

.provider-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #d5057f, #ff0099);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-logo svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.provider-name {
    font-size: 1.2em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.provider-country {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8em;
    margin-bottom: 12px;
    font-weight: 500;
}

.provider-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.85em;
}

.provider-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.1em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    font-weight: 500;
}

.provider-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #d5057f, #56008b);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 600;
    white-space: nowrap;
}

.providers-summary {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.summary-title {
    font-size: 2em;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.summary-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
}

.summary-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.summary-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.summary-feature:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.summary-feature svg {
    width: 24px;
    height: 24px;
    fill: #ffff00;
    flex-shrink: 0;
}

.summary-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Enhanced shimmer animation */
@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

/* Large Tablet */
@media (max-width: 992px) {
    .about-item {
        flex: 1 1 calc(50% - 15px);
        min-width: 250px;
    }
    
    .features-container {
        gap: 30px;
    }
    
    .features-image {
        flex: 0 0 35%;
    }
    
    .feature-showcase-img {
        max-width: 250px;
    }
}

/* Medium Tablet */
@media (max-width: 840px) {
    .about-text-columns {
        gap: 20px;
    }
    
    .about-item {
        flex: 1 1 100%;
        min-width: unset;
        max-width: 100%;
    }
    
    .features-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-image {
        flex: none;
        order: 2;
    }
    
    .features-list {
        order: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(45, 45, 45, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .trust-stats {
        gap: 2rem;
    }

    .about-content {
        width: 100%;
    }

    .about-text-columns {
        gap: 15px;
    }
    
    .about-item {
        flex: 1 1 100%;
        min-width: unset;
        margin-bottom: 15px;
    }
    
    .features-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .features-image {
        flex: none;
        order: 2;
        padding: 0 20px;
    }
    
    .feature-showcase-img {
        max-width: 250px;
    }
    
    .features-list {
        order: 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .recommended-games, .providers {
        padding: 50px 0;
    }
    
    .recommended-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .recommended-card, .provider-card {
        padding: 20px;
    }
    
    .recommended-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .provider-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .recommended-icon svg, .provider-logo svg {
        width: 30px;
        height: 30px;
    }
    
    .recommended-title, .provider-name {
        font-size: 1.2em;
    }
    
    .provider-stats {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .summary-features {
        grid-template-columns: 1fr;
    }
    
    .providers-summary {
        padding: 25px;
        margin-top: 40px;
    }
    
    .summary-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0.6rem 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cashback {
        /* flex-direction: column;
        gap: 5px; */
    }

    .cashback-percent {
        /* font-size: 3em; */
    }

    .trust-stats {
        gap: 1.5rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promotion-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .providers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .recommended-features, .provider-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-badge, .feature-tag {
        width: 100%;
        text-align: center;
    }
    
    .summary-feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Smooth scrolling and performance optimizations */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link::after {
        height: 3px;
    }
}

/* Print styles */
@media print {
    .header,
    .hero,
    .footer {
        display: none;
    }
    
    .games,
    .promotions,
    .about {
        background: white !important;
        color: black !important;
    }
}
