/*
Theme Name: ApostasGamer
Theme URI: https://apostasgamer.com
Description: Modern online casino comparison theme for ApostasGamer
Author: Claude
Author URI: https://apostasgamer.com
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apostasgamer
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #00CED1 0%, #00A8B8 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-logo {
    text-align: center;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #48D1CC 0%, #20B2AA 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* License Boxes */
.license-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 1100px;
    padding: 0 20px;
}

.license-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.license-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Casino Comparison Table */
.casino-table-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.casino-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
}

.casino-logo {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-info {
    flex: 1;
}

.casino-bonus {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.casino-features {
    list-style: none;
    color: #b0b0b0;
}

.casino-features li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.casino-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00CED1;
}

.casino-rating {
    text-align: center;
    flex-shrink: 0;
}

.rating-score {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.casino-cta {
    background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.casino-cta:hover {
    background: linear-gradient(135deg, #20B2AA 0%, #00CED1 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,206,209,0.4);
}

/* Guide Section */
.guide-section {
    background: #2a2a2a;
    color: white;
    padding: 50px 20px;
    margin: 60px auto;
    max-width: 900px;
    border-radius: 20px;
}

.guide-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00CED1;
}

.guide-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.guide-section h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #20B2AA;
}

.guide-section ul {
    list-style-position: inside;
    margin-bottom: 15px;
}

.guide-section ul li {
    margin-bottom: 8px;
}

/* Responsible Gaming Icons */
.responsible-gaming {
    text-align: center;
    padding: 40px 20px;
    margin: 40px auto;
}

.gaming-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.gaming-icons img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gaming-icons img:hover {
    opacity: 1;
}

/* Age Restriction */
.age-restriction {
    text-align: center;
    padding: 30px 20px;
}

.age-restriction img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.age-restriction p {
    color: white;
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #00CED1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #20B2AA;
}

.footer-copyright {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Terms Pages */
.terms-page {
    background: white;
    max-width: 900px;
    margin: 40px auto;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.terms-page h1 {
    color: #00CED1;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.terms-page h2 {
    color: #20B2AA;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

.terms-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.terms-page ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .casino-card {
        flex-direction: column;
        text-align: center;
    }

    .casino-logo {
        width: 120px;
        height: 70px;
    }

    .license-boxes {
        grid-template-columns: 1fr;
    }

    .terms-page {
        padding: 30px 20px;
    }
}
