/* V7V7 Casino Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background: linear-gradient(270deg, #cc0a42, #550018);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: #3d0014;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .active {
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    color: #3d0014;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 44px;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    color: #3d0014;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 227, 140, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f7d462;
    border: 2px solid #f7d462;
}

.btn-secondary:hover {
    background: #f7d462;
    color: #3d0014;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(61, 0, 20, 0.9), rgba(204, 10, 66, 0.8));
}

.hero .container, .section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f7d462;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin: 2rem 0;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.section {
    padding: 3rem 0;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #f7d462;
    text-align: center;
}

.section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f7d462;
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.section li {
    margin-bottom: 0.5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.grid-2, .grid-3, .grid-4 {
    width: 100%;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: rgba(61, 0, 20, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(247, 212, 98, 0.3);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #f7d462;
    box-shadow: 0 10px 25px rgba(247, 212, 98, 0.2);
}

.card img {
    margin: 0 auto 1rem;
    border-radius: 10px;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.slot-card {
    background: rgba(61, 0, 20, 0.9);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(247, 212, 98, 0.3);
    transition: all 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: #f7d462;
    box-shadow: 0 15px 30px rgba(247, 212, 98, 0.3);
}

.slot-card img {
    width: 100%;
    object-fit: cover;
}

.slot-card-content {
    padding: 1.5rem;
}

.slot-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #f7d462;
}

.slot-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(61, 0, 20, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(247, 212, 98, 0.3);
}

.feature i {
    color: #f7d462;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-content h4 {
    color: #f7d462;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(61, 0, 20, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(247, 212, 98, 0.3);
}

.faq-question {
    font-weight: bold;
    color: #f7d462;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer {
    line-height: 1.7;
}

/* Testimonials */
.testimonial {
    background: rgba(61, 0, 20, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    border-left: 4px solid #f7d462;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    color: #f7d462;
    font-style: normal;
}

/* Footer */
.footer {
    background: #3d0014;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(247, 212, 98, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #f7d462;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f7d462;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.payment-method {
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #3d0014;
    font-weight: bold;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 212, 98, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 1330px) {
    .header-content {
        gap: 1rem;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .header-buttons {
        order: 1;
    }

    .header-buttons .btn i {
        display: none;
    }
}

@media (max-width: 440px) {
    .header-buttons .btn {
        padding: 0.5rem;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-buttons .btn-text {
        display: none;
    }
    
    .header-buttons .btn i {
        display: inline-block;
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {

    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .grid {
        gap: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .slot-card-content {
        padding: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.highlight {
    color: #f7d462;
    font-weight: bold;
}

.gradient-text {
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
.btn:focus,
a:focus {
    outline: 2px solid #f7d462;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card,
    .slot-card,
    .feature {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 