/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1a1a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(20, 128, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 193, 3, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #fbc103;
    text-shadow: 0 0 20px rgba(251, 193, 3, 0.5);
}

h2 {
    font-size: 2rem;
    color: #fbc103;
    text-shadow: 0 0 15px rgba(251, 193, 3, 0.3);
}

h3 {
    font-size: 1.5rem;
    color: #fbc103;
}

h4 {
    font-size: 1.25rem;
    color: #fbc103;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

a {
    color: #fbc103;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #f79604;
    text-shadow: 0 0 10px rgba(251, 193, 3, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #fbc103, #f79604, #fbc103);
    background-size: 200% 200%;
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 193, 3, 0.4);
    animation: gradientShift 3s ease infinite;
}

.btn-primary:hover {
    transform: unset !important;
    box-shadow: 0 8px 25px rgba(251, 193, 3, 0.6);
    background-position: right center;
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: unset !important;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
.header {
    background: rgb(20, 128, 94);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(251, 193, 3, 0.5));
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-list a {
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fbc103;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(251, 193, 3, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(20, 128, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #fbc103;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(251, 193, 3, 0.6);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 3px solid #fbc103;
    transition: all 0.3s ease;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #fbc103, #f79604, #14807e);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

/* Download Options */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.download-option {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    border: 2px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.download-option:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251, 193, 3, 0.2);
    border-color: #fbc103;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fbc103, #f79604);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(251, 193, 3, 0.3);
}

.option-content h3 {
    color: #fbc103;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.option-content p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Login Steps */
.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #fbc103, #f79604);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fbc103;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Advantages Table */
.advantages-table {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    background: rgba(26, 26, 26, 0.8);
    padding: 1rem;
}

.advantages-table table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
}

.advantages-table th,
.advantages-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(251, 193, 3, 0.2);
}

.advantages-table th {
    background: linear-gradient(45deg, #14807e, #1a9a8a);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantages-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.advantages-table tr:hover {
    background: rgba(251, 193, 3, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.advantages-table td i {
    color: #fbc103;
    margin-right: 0.5rem;
}

/* Safety Images */
.safety-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.safety-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.safety-image img:hover {
    transform: scale(1.05);
    border-color: #fbc103;
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.3);
}

/* Login Images */
.login-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.login-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.login-image img:hover {
    transform: scale(1.05);
    border-color: #fbc103;
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.3);
}

/* App Images */
.app-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.app-image img:hover {
    transform: scale(1.05);
    border-color: #fbc103;
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.3);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.game-category {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.game-category:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.game-image {
    flex-shrink: 0;
}

.game-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(251, 193, 3, 0.3);
}

.game-content h3 {
    color: #fbc103;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.game-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-item {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.category-item h3 {
    color: #fbc103;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-item p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.slot-game {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.slot-game:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.slot-image {
    flex-shrink: 0;
}

.slot-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(251, 193, 3, 0.3);
}

.slot-content h3 {
    color: #fbc103;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.slot-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Slot Types */
.slot-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.slot-type {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.slot-type:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.slot-type h3 {
    color: #fbc103;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.slot-type p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.bonus-image {
    flex-shrink: 0;
}

.bonus-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(251, 193, 3, 0.3);
}

.bonus-content h3 {
    color: #fbc103;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.bonus-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bonus Steps */
.bonus-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-step {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-step:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.bonus-step h3 {
    color: #fbc103;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bonus-step p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Betting Grid */
.betting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.betting-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.betting-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.betting-image {
    flex-shrink: 0;
}

.betting-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(251, 193, 3, 0.3);
}

.betting-content h3 {
    color: #fbc103;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.betting-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Betting Steps */
.betting-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.betting-step {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.betting-step:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.betting-step h3 {
    color: #fbc103;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.betting-step p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Aviator Grid */
.aviator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.aviator-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.aviator-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.aviator-image {
    flex-shrink: 0;
}

.aviator-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(251, 193, 3, 0.3);
}

.aviator-content h3 {
    color: #fbc103;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.aviator-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Aviator Steps */
.aviator-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.aviator-step {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.aviator-step:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.aviator-step h3 {
    color: #fbc103;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.aviator-step p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Live Casino Grid */
.live-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.live-casino-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    transition: all 0.3s ease;
}

.live-casino-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.live-casino-image {
    flex-shrink: 0;
}

.live-casino-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(251, 193, 3, 0.3);
}

.live-casino-content h3 {
    color: #fbc103;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.live-casino-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Live Casino Steps */
.live-casino-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.live-casino-step {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(251, 193, 3, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.live-casino-step:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 193, 3, 0.2);
}

.live-casino-step h3 {
    color: #fbc103;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.live-casino-step p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Sections */
.safety-section,
.gaming-section,
.play-flow,
.cta-section {
    background: rgba(45, 45, 45, 0.8);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 193, 3, 0.2);
    backdrop-filter: blur(10px);
}

.safety-section .container,
.gaming-section .container,
.play-flow .container,
.cta-section .container {
    text-align: center;
}

/* Pros Cons Section */
.pros-cons {
    background: rgba(45, 45, 45, 0.8);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 193, 3, 0.2);
    backdrop-filter: blur(10px);
}

.pros-cons-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.pros h3,
.cons h3 {
    color: #fbc103;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pros-cons h2, .pros-cons p {
    text-align: center;
}

.pros-cons p {
    margin-bottom: 2rem;
}

.pros h3 i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.cons h3 i {
    color: #dc3545;
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.pros ul,
.cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li,
.cons li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pros li {
    border-left-color: #28a745;
}

.cons li {
    border-left-color: #dc3545;
}

.pros li:hover,
.cons li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.pros li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.cons li:before {
    content: "✗";
    color: #dc3545;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2em;
}

/* Metrics Section */
.metrics-section {
    background: rgba(45, 45, 45, 0.8);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 193, 3, 0.2);
    backdrop-filter: blur(10px);
}

.metrics-table {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    background: rgba(26, 26, 26, 0.8);
    padding: 1rem;
}

.metrics-table table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
}

.metrics-table th,
.metrics-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(251, 193, 3, 0.2);
}

.metrics-table th {
    background: linear-gradient(45deg, #14807e, #1a9a8a);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metrics-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.metrics-table tr:hover {
    background: rgba(251, 193, 3, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.metrics-table td i {
    color: #fbc103;
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background: rgba(45, 45, 45, 0.8);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 193, 3, 0.2);
    backdrop-filter: blur(10px);
}

.faq-item {
    margin-bottom: 1rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border-left: 4px solid #fbc103;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 193, 3, 0.2);
}

.faq-item h3 {
    color: #fbc103;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: #fbc103;
    transition: transform 0.3s ease;
}

.faq-item.open p {
    margin-top: 1rem !important;
}

.faq-item.open h3::after {
    transform: rotate(45deg);
}

/* Rating Section */
.rating-section {
    background: rgba(45, 45, 45, 0.8);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 193, 3, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

/* Button Groups */
.gaming-buttons,
.play-buttons,
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    border-top: 3px solid #fbc103;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fbc103;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(251, 193, 3, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #fbc103;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(251, 193, 3, 0.5);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: #fbc103;
}

.payment-methods i {
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(251, 193, 3, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 193, 3, 0.3);
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .pros-cons-content {
        gap: 2rem;
    }
    
    .login-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .download-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 1540px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        align-items: center;
    }

    .nav.active .nav-list li {
        width: unset !important;
    }
    
    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .payment-methods{
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .pros-cons-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .download-option {
        flex-direction: column;
        text-align: center;
    }
    
    .option-icon {
        align-self: center;
    }
    
    .safety-images,
    .login-images,
    .app-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-category {
        flex-direction: column;
        text-align: center;
    }
    
    .game-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slot-game {
        flex-direction: column;
        text-align: center;
    }
    
    .slot-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-grid,
    .betting-grid,
    .aviator-grid,
    .live-casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-item,
    .betting-item,
    .aviator-item,
    .live-casino-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-steps,
    .betting-steps,
    .aviator-steps,
    .live-casino-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gaming-buttons,
    .play-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .metrics-table,
    .advantages-table {
        font-size: 0.9rem;
    }
    
    .metrics-table th,
    .metrics-table td,
    .advantages-table th,
    .advantages-table td {
        padding: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .download-option {
        padding: 1.5rem;
    }
    
    .option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 420px) {
    .header-buttons{
        width: 100%;
        order: 3;
        justify-content: center;
        margin-top: 15px;
    }

    .header-content {
        flex-wrap: wrap;
    }
}

/* Mobile Menu Active State */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-top: 2px solid #fbc103;
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 0;
}

.nav.active .nav-list li {
    width: 100%;
}

.nav.active .nav-list a {
    display: block;
    padding: 1rem;
    border-radius: 10px;
    border-bottom: 1px solid rgba(251, 193, 3, 0.2);
    margin-bottom: 0.5rem;
}

.nav.active .nav-list a:last-child {
    border-bottom: none;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.btn:hover {
    transform: translateY(-3px);
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-list a:focus {
    outline: 2px solid #fbc103;
    outline-offset: 2px;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glow Effects */
.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(251, 193, 3, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(251, 193, 3, 0.8);
    }
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
} 
