/* PJOK Casino - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #133a25;
    overflow-x: hidden;
}

/* Colors */
:root {
    --primary-green: #133a25;
    --gradient-green: linear-gradient(0deg, #95ff3b 100%, #cbff9f 0);
    --gradient-yellow: linear-gradient(12deg, #fff14b 8%, #fffabc 98%);
    --white: #ffffff;
    --text-light: #f0f0f0;
    --text-dark: #333333;
    --border-color: #2a5a3f;
    --shadow: rgba(0, 0, 0, 0.3);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #95ff3b;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #cbff9f;
    text-shadow: 0 0 5px #95ff3b;
}

/* Header */
header {
    background: rgba(19, 58, 37, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
}

.header-container {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav li a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav li a:hover {
    background: var(--gradient-green);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.nav li a.active, .mobile-nav li a.active {
    background: var(--gradient-yellow);
    color: var(--text-dark);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--gradient-yellow);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    gap: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(149, 255, 59, 0.4);
    color: var(--text-dark);
    text-shadow: none;
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
}

.btn-secondary:hover {
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(149, 255, 59, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(19, 58, 37, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--border-color);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav li a {
    display: block;
    padding: 1rem;
    color: var(--white);
    text-align: center;
}

.mobile-cta {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 58, 37, 0.7);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Content Sections */
.section {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
    background: rgba(42, 90, 63, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #95ff3b;
    box-shadow: 0 15px 30px var(--shadow);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    color: #95ff3b;
    margin-bottom: 1rem;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    background: rgba(42, 90, 63, 0.8);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--gradient-green);
    color: var(--text-dark);
    font-weight: bold;
}

tr:hover {
    background: rgba(149, 255, 59, 0.1);
}

/* Lists */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #95ff3b;
    font-size: 1.2rem;
    width: 20px;
}

/* Quote */
.quote {
    background: rgba(42, 90, 63, 0.8);
    border-left: 5px solid #95ff3b;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.1rem;
}

/* FAQ */
.faq-item {
    background: rgba(42, 90, 63, 0.8);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-header {
    background: var(--gradient-green);
    color: var(--text-dark);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-content {
    padding: 1.5rem;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

/* Footer */
footer {
    background: rgba(19, 58, 37, 0.95);
    border-top: 2px solid var(--border-color);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-systems {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.payment-icon {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 0.9rem;
}

.footer-links {
    margin: 2rem 0;
    color: var(--text-light);
}

.footer-links a {
    color: #95ff3b;
    margin: 0 1rem;
}

.copyright {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design - Mobile First */

@media (max-width:440px) {
    .header-container {
        gap: 20px;
        flex-wrap: wrap;
    }

    .logo {
        height: 35px;
    }

    .mobile-menu-toggle {
        order: 2;
    }

    .cta-buttons {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 1420px) {
    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .payment-systems {
        gap: 1rem;
    }
    
    .payment-icon {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav {
        gap: 1rem;
    }
    
    .nav li a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 253, 144, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 253, 144, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 253, 144, 0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Print Styles */
@media print {
    .hero-video,
    .mobile-menu-toggle,
    .mobile-menu {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-overlay {
        background: rgba(255, 255, 255, 0.9);
    }
} 