/* Favorit Template - Page Style - Casino Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

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

body { 
    font-family: 'Poppins', sans-serif;
    line-height: 1.7; 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 20px; 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e9ecef;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container { 
    background: rgba(255, 255, 255, 0.98);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 107, 53, 0.3);
    color: #2d3748;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #fdc500 100%);
}

h1 { 
    color: #1a1a2e; 
    font-size: 2.5em; 
    margin-bottom: 25px; 
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}





article { 
    font-size: 1.1em;
    color: #4a5568;
}

article p {
    margin-bottom: 18px;
    line-height: 1.8;
}

article strong {
    color: #ff6b35;
    font-weight: 700;
}

article ul, article ol {
    margin: 18px 0;
    padding-left: 30px;
}

article li {
    margin-bottom: 10px;
    position: relative;
}

article li::marker {
    color: #ff6b35;
    font-weight: 700;
}

.related-questions {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
    border-radius: 16px;
    border: 2px solid #ff6b35;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.related-questions::before {
    content: "🎰";
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 2em;
    background: white;
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.related-questions h2 {
    color: #1a1a2e;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-questions ul {
    list-style: none;
    padding: 0;
}

.related-questions li {
    margin-bottom: 12px;
}

.related-questions a {
    color: #2d3748;
    text-decoration: none;
    display: block;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #ffe8db;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.related-questions a::before {
    content: "🎲";
    margin-right: 10px;
    font-size: 1.2em;
}

.related-questions a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.related-questions a:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    transform: translateX(10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.related-questions a:hover::after {
    left: 100%;
}

footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 3px solid #ffe8db;
    font-size: 0.9em;
    color: #718096;
}

footer strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Pulse animation for emphasis */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    article {
        font-size: 1em;
    }
    
    .related-questions {
        padding: 20px;
    }
    
    .related-questions::before {
        top: -15px;
        left: 20px;
        font-size: 1.5em;
    }
}

/* CTA Block Styles - Favorit Casino Theme */
.cta-block {
    margin: 50px 0;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.cta-style-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fdc500 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.cta-style-secondary {
    background: rgba(255, 107, 53, 0.1);
    border: 3px solid #ff6b35;
    color: #2d3748;
}

.cta-style-accent {
    background: linear-gradient(135deg, #fdc500 0%, #f7931e 100%);
    color: #1a1a2e;
    box-shadow: 0 10px 40px rgba(253, 197, 0, 0.4);
}

.cta-style-minimal {
    background: transparent;
    border-top: 3px solid #ffe8db;
    padding-top: 40px;
    color: #2d3748;
}

.cta-title {
    font-size: 1.875em;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.125em;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    font-size: 1.125em;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-style-primary .cta-button {
    background: white;
    color: #ff6b35;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-style-primary .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.cta-style-secondary .cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.cta-style-secondary .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.cta-style-accent .cta-button {
    background: #1a1a2e;
    color: #fdc500;
}

.cta-style-accent .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.5);
}

.cta-style-minimal .cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.cta-style-minimal .cta-button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cta-block {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.5em;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1em;
    }
}


/* Back Navigation */
.top-nav {
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    font-size: 0.95em;
    transition: background 0.3s;
}

.back-link:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Quick Answer Box */
.quick-answer {
    background: #f0f7ff;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.quick-answer-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #1e40af;
}

.quick-answer p {
    margin: 0;
    line-height: 1.6;
}

/* Detailed Content */
.detailed-content {
    margin: 30px 0;
}

.detailed-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.detailed-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.detailed-content ul, 
.detailed-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.detailed-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Questions Section */
.questions-section {
    margin: 30px 0;
}

.questions-section h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
}
