/*
Theme Name: Casino Orange Stacked
Theme URI: https://example.com
Author: Custom Theme
Author URI: https://example.com
Description: Moderni oranssi teema nettikasinoiden mainostamiseen - Stacked Layout
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: casino-orange-stacked
*/

:root {
    --primary-orange: #FF6B35;
    --dark-orange: #E85D2A;
    --light-orange: #FF8F6B;
    --accent-yellow: #FFB627;
    --dark-bg: #1A1A1A;
    --card-bg: #2A2A2A;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --border-color: #3A3A3A;
    --success-green: #4CAF50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B1B 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.site-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    padding: 2rem 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(255, 107, 53, 0.3);
    z-index: 100;
}

.site-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 1rem;
}

.sidebar-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.sidebar-separator {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.social-section {
    margin-top: 2rem;
}

.social-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.social-links,
.twitch-links {
    margin-top: 0;
}

.social-btn,
.twitch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    color: white;
}

.twitch-btn {
    background: #9146FF;
}

.twitch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(145, 70, 255, 0.4);
    background: #772CE8;
}

.kick-btn {
    background: #53FC18;
    color: #000000;
}

.kick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(83, 252, 24, 0.4);
    background: #42D913;
    color: #000000;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.about-section {
    max-width: 1000px;
    margin: 5rem auto 3rem;
    background: transparent;
    padding: 3rem 2rem;
    border-radius: 0;
    border: none;
    border-top: 2px solid var(--border-color);
    padding-top: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-light);
    font-weight: 600;
}

.about-text a {
    color: var(--primary-orange);
    text-decoration: none;
}

.about-text a:hover {
    color: var(--light-orange);
}

.casino-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.casino-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
}

.casino-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.casino-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.casino-info {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.bonus-section {
    flex: 1;
}

.bonus-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.bonus-description {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.features-section {
    flex: 1;
}

.casino-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.casino-features li {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.casino-features li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.claim-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    text-align: center;
    white-space: nowrap;
}

.claim-btn:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.more-info-btn {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
}

.more-info-btn:hover {
    color: var(--light-orange);
}

.casino-extra-info {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: none;
}

.casino-extra-info.open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-section h4 {
    color: var(--primary-orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    gap: 1rem;
}

.info-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.info-value {
    color: white;
    font-weight: 600;
    text-align: right;
}

.info-value.yes {
    color: var(--success-green);
}

.info-value.no {
    color: #f44336;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }
    
    .main-content {
        margin-left: 240px;
        padding: 2rem;
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .casino-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .info-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .main-content {
        margin-left: 0;
        padding: 1.5rem;
    }
    
    .site-container {
        flex-direction: column;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }

    .casino-actions {
        width: 100%;
    }

    .claim-btn {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Footer */
.site-footer {
    background: #0A0A0A;
    border-top: 1px solid var(--border-color);
    padding: 2rem 3rem;
    margin-left: 280px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-links .separator {
    color: var(--border-color);
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Page Template */
.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-text {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    line-height: 1.8;
    color: var(--text-light);
}

.page-text h2 {
    color: var(--primary-orange);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-text h3 {
    color: var(--light-orange);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.page-text p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.page-text a {
    color: var(--primary-orange);
    text-decoration: none;
}

.page-text a:hover {
    color: var(--light-orange);
}

.page-text ul,
.page-text ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .site-footer {
        margin-left: 0;
        padding: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-text {
        padding: 2rem;
    }
}
/* Main Logo at top */
.site-header-logo {
    text-align: center;
    padding: 3rem 0 2rem 0;
}

.site-header-logo img {
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsible Gaming Banner */
.responsible-gaming-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-orange);
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.responsible-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.responsible-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.responsible-text strong {
    color: var(--primary-orange);
}


/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 2rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

