/* CSS Styles for NV Casino Landing Page - styles.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.logo-img {
    height: 40px;
    width: auto;
    padding: 5px 15px;
    border-radius: 8px;
}

.navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-link:hover {
    color: #ffd700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::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><radialGradient id="g"><stop offset="20%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="50%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="20" r="10" fill="url(%23g)"/><circle cx="80" cy="40" r="15" fill="url(%23g)"/><circle cx="40" cy="80" r="12" fill="url(%23g)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a237e;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.hero-gift {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    z-index: 3;
}

.gift-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: radial-gradient(circle, #ff6b6b, #ee5a24);
    border-radius: 50%;
    padding: 20px;
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 50px;
    text-align: center;
}

.content-section h2 {
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 25px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #3949ab;
    margin: 25px 0 15px;
    font-weight: 600;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.intro-section p {
    text-align: justify;
}

/* Table Styles */
.casino-table {
    margin: 40px 0;
    overflow-x: auto;
}

.casino-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.casino-table th {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #fff;
    padding: 15px;
    font-weight: 600;
    text-align: left;
}

.casino-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.casino-table tr:hover {
    background-color: #f8f9ff;
}

/* Image Placeholders */
.image-placeholder {
    margin: 40px 0;
    text-align: center;
}

.content-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-img::after,
.content-image::after,
.gift-img::after {
    content: '🎰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.7;
}

/* CTA Button Variations */
.cta-button-inline {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a237e;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.cta-button-inline:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a237e;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #1a237e;
    border: 2px solid #1a237e;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 10px;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: #1a237e;
    color: #fff;
    transform: translateY(-1px);
}

/* Advantages Section */
.advantages-section {
    background: #fff;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.advantages-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9ff;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.advantage-item h3 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.advantage-item::before {
    content: '✓';
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Reviews Section */
.reviews-section {
    margin: 60px 0;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd700;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 700;
    color: #1a237e;
}

.reviewer-location {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
    background: #fff;
    padding: 50px 0;
    border-radius: 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 40px;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 30px;
    background: #f8f9ff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #fff;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #303f9f, #3949ab);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    text-align: left;
}

/* Login Section */
.login-section {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-radius: 20px;
    margin: 60px 0;
}

.login-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.login-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.login-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    padding: 5px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,215,0,0.3);
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.app-store-badge,
.google-play-badge {
    height: 40px;
    width: auto;
    background: #000;
    border-radius: 8px;
}

.payment-methods,
.game-providers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.payment-icon,
.provider-icon {
    width: 60px;
    height: 35px;
    background: #fff;
    border-radius: 5px;
    object-fit: contain;
    padding: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-disclaimer a {
    color: #ffd700;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-gift {
        display: none;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .login-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods,
    .game-providers {
        justify-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .casino-table {
        font-size: 0.9rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 10px;
    }
}

/* Animation Classes */
.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a237e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.author-bio {
    background-color: #2a2a2a;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ccc;
}

.author-text {
    flex: 1;
    min-width: 250px;
}

.author-text h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #fffffff;
}

.author-text p {
    margin-top: 10px;
    font-size: 1em;
    color: #ffffff;
    line-height: 1.6;
}