/* LAKI WORLD Casino - Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Pin Up Style */
.header {
    background: #3a3a3a;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-right: 40px;
}

.logo-img {
    height: 35px;
    width: auto;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-list li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #ffffff;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-login {
    background: #4CAF50;
    color: white;
}

.btn-login:hover {
    background: #45a049;
}

.btn-register {
    background: #f44336;
    color: white;
}

.btn-register:hover {
    background: #da190b;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Area */
.banner-area {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    padding: 120px 0 60px;
    text-align: center;
}

.banner-placeholder h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #f0f9ff;
}

.banner-placeholder p {
    font-size: 1.2em;
    color: #ddd;
}

/* Main Content */
.main {
    padding: 40px 0;
}

/* Games Section - Pin Up Style */
.games-section {
    margin: 40px 0;
}

.games-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #fff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.game-item {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.game-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.game-item h3 {
    padding: 15px;
    font-size: 14px;
    text-align: center;
    color: #fff;
}

/* Game Overlay Styles */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.game-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    min-width: 80px;
    text-align: center;
}

.play-btn {
    background: #4CAF50;
    color: white;
}

.play-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.demo-btn {
    background: #2196F3;
    color: white;
}

.demo-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

/* Game Categories */
.game-category {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.game-category:hover {
    transform: translateY(-5px);
}

.game-category h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Sections */
section {
    margin: 40px 0;
    padding: 30px;
    background: #2a2a2a;
    border-radius: 10px;
}

section h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 2em;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table th,
.info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.info-table th {
    background: #3a3a3a;
    color: #4CAF50;
    font-weight: bold;
}

.info-table td {
    color: #ddd;
}

/* Bonus Items */
.bonus-item {
    background: #3a3a3a;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.bonus-item h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.payment-methods div {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.advantages-grid div {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* FAQ Section */
.faq-item {
    background: #3a3a3a;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    background: #4CAF50;
    color: white;
    padding: 15px;
    margin: 0;
    cursor: pointer;
}

.faq-item p {
    padding: 15px;
    margin: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.telegram-contact {
    margin-top: 15px;
}

.telegram-link {
    display: flex;
    align-items: center;
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.telegram-link:hover {
    color: #0088cc;
}

.telegram-icon,
.instagram-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.instagram-contact {
    margin-top: 10px;
}

.instagram-link {
    display: flex;
    align-items: center;
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.instagram-link:hover {
    color: #e4405f;
}

.back-to-home {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px 0;
    font-weight: bold;
    transition: all 0.3s;
}

.back-to-home:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Action Button Styles */
.action-button {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    margin: 10px 15px;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 16px;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.action-button:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

/* Content with Banner Styles */
.content-with-banner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 30px 0;
}

.content-text {
    flex: 2;
}

.content-banner {
    flex: 1;
    text-align: center;
}

.content-banner img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.provider-item {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.provider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.provider-item img {
    width: 100%;
    max-width: 120px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s;
}

.provider-item:hover img {
    filter: brightness(1);
}

.provider-item h4 {
    color: #4CAF50;
    margin: 15px 0 5px;
    font-size: 14px;
}

.provider-item p {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
}

/* Reviews Styles */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.review-item {
    background: #3a3a3a;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    transition: transform 0.3s;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-item h4 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 16px;
}

.review-item p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-rating {
    color: #ffd700;
    font-size: 18px;
    text-align: right;
}

/* Promo Codes Styles */
.promo-codes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.promo-item {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    color: white;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.promo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.promo-item:hover::before {
    left: 100%;
}

.promo-item:hover {
    transform: translateY(-5px);
}

.promo-item h4 {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.2);
    padding: 8px;
    border-radius: 5px;
}

.promo-item p {
    margin-bottom: 15px;
    font-size: 14px;
}

.promo-status {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #3a3a3a;
        border-top: 1px solid #555;
        z-index: 999;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-list li {
        border-bottom: 1px solid #555;
        padding: 10px 0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list li a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .banner-placeholder h1 {
        font-size: 2em;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .game-item img {
        height: 120px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
    }
    
    .footer-section {
        margin-bottom: 25px;
        padding: 20px;
        background: #2a2a2a;
        border-radius: 8px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #4CAF50;
        border-bottom: 2px solid #4CAF50;
        padding-bottom: 8px;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .footer-section ul {
        padding-left: 0;
    }
    
    .footer-section ul li {
        list-style: none;
        padding: 5px 0;
        border-bottom: 1px solid #444;
    }
    
    .footer-section ul li:last-child {
        border-bottom: none;
    }
    
    .footer-section ul li a {
        display: block;
        padding: 8px 0;
        color: #ddd;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .footer-section ul li a:hover {
        color: #4CAF50;
        padding-left: 10px;
    }
    
    .telegram-contact,
    .instagram-contact {
        margin-top: 15px;
        padding: 10px;
        background: #333;
        border-radius: 6px;
    }
    
    .telegram-link,
    .instagram-link {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        font-weight: bold;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 30px;
        padding: 20px;
        background: #1a1a1a;
        border-radius: 8px;
    }
    
    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 20px;
    }
    
    section h2 {
        font-size: 1.5em;
    }
    
    .info-table {
        font-size: 12px;
    }
    
    .info-table th,
    .info-table td {
        padding: 8px 5px;
    }
    
    .content-with-banner {
        flex-direction: column;
        gap: 20px;
    }
    
         .content-banner {
         text-align: center;
         margin: 40px 0;
         padding: 0;
     }
     
     .content-banner img {
         max-width: none;
         width: 100%;
         max-height: 600px;
         height: auto;
         object-fit: contain;
         border-radius: 15px;
         box-shadow: 0 8px 25px rgba(0,0,0,0.5);
     }
    
         .providers-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 15px;
     }
     
     /* Hide game overlay on mobile */
     .game-overlay {
         display: none !important;
     }
     
     /* Make game items clickable on mobile */
     .game-item {
         cursor: pointer;
     }
     
     .game-item[data-href] {
         cursor: pointer;
     }
    
    .provider-item {
        padding: 15px;
    }
    
    .provider-item img {
        max-width: 80px;
        height: 40px;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .promo-codes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promo-item {
        padding: 20px;
    }
} 