/* ==========================================
   ADDITIONAL SECTIONS STYLES
   Дополнительные стили для всех секций сайта
   ========================================== */

/* Hero Placeholder */
.hero-placeholder {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.plinko-board-visual {
    text-align: center;
    color: white;
}

.plinko-ball {
    font-size: 64px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.plinko-pins {
    margin: 30px 0;
    font-size: 32px;
    letter-spacing: 20px;
    opacity: 0.8;
}

.plinko-multipliers {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.plinko-multipliers span {
    padding: 8px 16px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
}

/* Map Placeholder */
.map-placeholder {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-icon {
    font-size: 128px;
    margin-bottom: 20px;
}

.map-text {
    font-size: 28px;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Game Board Placeholder */
.game-board-placeholder {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.board-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #37b24d;
}

.board-visual {
    margin: 30px 0;
}

.pins-row {
    font-size: 32px;
    letter-spacing: 15px;
    margin: 10px 0;
    color: #37b24d;
}

.payout-zones {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.payout-zones .zone {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    color: white;
}

.payout-zones .low {
    background: linear-gradient(135deg, #364fc7, #1864ab);
}

.payout-zones .med {
    background: linear-gradient(135deg, #9775fa, #6741d9);
}

.payout-zones .high {
    background: linear-gradient(135deg, #ff6b6b, #c92a2a);
}

.payout-zones .ultra {
    background: linear-gradient(135deg, #ffd700, #ffa500);
}

/* Strategy Icon */
.strategy-icon {
    font-size: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Casino Logo with Icon */
.casino-icon {
    font-size: 48px;
}

.casino-name-small {
    font-weight: bold;
    color: #37b24d;
    margin-top: 10px;
    font-size: 16px;
}

/* Regional Info */
.regional-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.regional-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2f9e44;
}

.city-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.regional-map {
    max-width: 700px;
    margin: 30px auto;
}

.regional-map img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.city-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #37b24d;
}

/* What is Plinko */
.what-is-plinko {
    padding: 60px 0;
    background: white;
}

.what-is-plinko h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.text-content h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #37b24d;
}

.text-content ul {
    list-style-position: inside;
    margin-left: 20px;
}

.text-content li {
    margin-bottom: 10px;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Game Features */
.game-features {
    padding: 60px 0;
    background: #f8f9fa;
}

.game-features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #37b24d;
}

/* Provider Comparison */
.provider-comparison {
    padding: 60px 0;
    background: white;
}

.provider-comparison h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

th {
    background: #37b24d;
    color: white;
    padding: 15px;
    text-align: left;
}

td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

tr:hover {
    background: #f8f9fa;
}

/* Strategies Preview */
.strategies-preview {
    padding: 60px 0;
    background: #f8f9fa;
}

.strategies-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.strategy-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.strategy-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #37b24d;
}

.strategy-card a {
    display: inline-block;
    margin-top: 15px;
    color: #37b24d;
    text-decoration: none;
    font-weight: bold;
}

.strategy-card a:hover {
    text-decoration: underline;
}

/* Crypto Casinos */
.crypto-casinos {
    padding: 60px 0;
    background: white;
}

.crypto-casinos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
}

.casino-list {
    display: grid;
    gap: 25px;
}

.casino-item {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #37b24d;
}

.casino-logo {
    width: 150px;
    height: 60px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casino-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #37b24d;
}

/* Why Choose Plinko */
.why-choose-plinko {
    padding: 60px 0;
    background: #f8f9fa;
}

.why-choose-plinko h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.comparison-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.comparison-header {
    margin-bottom: 20px;
}

.vs-badge {
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.comparison-item h3 {
    color: #37b24d;
    margin-bottom: 15px;
}

.comparison-item ul {
    list-style: none;
    padding-left: 0;
}

.comparison-item li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.comparison-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #37b24d;
    font-weight: bold;
}

.key-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.key-benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2f9e44;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-box {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #37b24d;
}

.benefit-box strong {
    display: block;
    color: #37b24d;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* How to Start */
.how-to-start {
    padding: 60px 0;
    background: white;
}

.how-to-start h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    position: relative;
    border-left: 5px solid #37b24d;
}

.step-number {
    display: inline-block;
    background: #37b24d;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}

.step-item h3 {
    color: #2f9e44;
    margin-bottom: 10px;
}

.step-item ul {
    margin: 15px 0;
    padding-left: 20px;
}

.step-item li {
    margin-bottom: 8px;
}

.step-tip {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid #ffd700;
}

.quick-start-cta {
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.quick-start-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.quick-start-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons-row .btn-primary,
.cta-buttons-row .btn-secondary {
    padding: 15px 35px;
}

.cta-buttons-row .btn-primary {
    background: white;
    color: #37b24d;
}

.cta-buttons-row .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #37b24d;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    border-bottom: 1px solid #e9ecef;
}

.faq-item p {
    padding: 20px;
    color: #666;
}

.faq-item a {
    color: #37b24d;
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #37b24d 0%, #2f9e44 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #212529;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #37b24d;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #adb5bd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #37b24d;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    text-align: center;
    color: #adb5bd;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .features-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons-row {
        flex-direction: column;
    }

    .step-item {
        padding: 20px;
    }
    
    .city-cards,
    .strategy-cards {
        grid-template-columns: 1fr;
    }
}

