* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cf2e2e;
    --secondary-color: #161616;
    --text-light: rgba(255,255,255,0.6);
    --bg-dark: #0e0e0e;
    --bg-section: #1a1a1a;
    --white: #ffffff;
    --border-color: rgba(255,255,255,0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    
}

/* Header */
header {
    background: #0f0f13;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    flex: 0 0 25%;
}

.logo {
    max-height: 60px;
    width: auto;
    filter: blur(20px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40em;
    position: relative;

    background-color: #16161b;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 14px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(207, 46, 46, 0.4);
}

.hero-images {
    position: relative;
    text-align: center;
    height: 100%;
}

.hero-images img {
    position: absolute;
}

.hero-images img:nth-child(1) { /* Tiger */
    width: 30%;
    top: 0;
    right: 3em;
    z-index: 3;
}

.hero-images img:nth-child(2) { /* Main */
    width: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

.hero-images img:nth-child(3) { /* Spaceman */
    width: 20%;
    bottom: 0;
    right: 2em;
    z-index: 3;
}

.hero-images img:nth-child(4) { /* Bull */
    width: 25%;
    bottom: 10px;
    left: 3em;
    z-index: 3;
}

.hero-images img:nth-child(5) { /* Aviator */
    width: 30%;
    top: 20px;
    left: 0;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -55%) scale(1.05); }
}

/* Games Section */
.games-section {
    background: var(--bg-section);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header h4 {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1.1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.game-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

.game-card .image {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
}

.game-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(207, 46, 46, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-hover {
    opacity: 1;
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.game-info h4 a {
  text-decoration: none;
  color: white;
}

.play-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Trust Section */
.trust-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.trust-header {
    text-align: center;
    margin-bottom: 40px;
}

.trust-header h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.trust-image {
    text-align: center;
    margin-bottom: 40px;
}

.trust-image img {
    max-width: 100%;
    height: auto;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.trust-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.trust-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--secondary-color);
    padding: 80px 0;
}

.features-content {
    background: rgba(255,255,255,0.05);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color:#FF8585
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: var(--bg-section);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-content {
    padding-right: 40px;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.08);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: blur(12px);
}

/* Content Sections */
.content-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* Responsible Gaming */
.responsible {
    background: var(--secondary-color);
    padding: 60px 0;
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
}

.responsible-content p {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer h2 {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid,
    .trust-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .hero {
      height: 800px;
    }
    
    .hero-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-images {
        height: 400px;
        margin-bottom: 5em;
    }

    .hero-images img:nth-child(2) {
        width: 60%;
    }

    .hero-images img:nth-child(3) {
        bottom: 3em;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 400px) {

  .hero {
    height: 400px;
  }

  .hero-images {
    display: none;
  }
}