/* ====================================
   CRAZY TIME ITALIA - STYLE.CSS
   Цветовая гамма: темная тема с золотыми акцентами
   Стиль: aliscarl.it
   ==================================== */
/* === БАЗОВЫЕ СТИЛИ === */
body {
    background-color: #0a0a0f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}
/* === NAVBAR === */
.navbar {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.navbar .navbar-brand,
.navbar .nav-link {
    color: #ffffff;
}
.navbar .nav-link:hover,
.navbar .navbar-brand:hover {
    color: #ffd700;
}
/* === MAIN CONTENT === */
main {
    color: #e0e0e0;
}
/* === FOOTER === */
.bg-dark {
    background: linear-gradient(180deg, #16213e 0%, #0a0a0f 100%) !important;
    color: #fff;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}
footer .text-center {
    color: #b0b0b0;
}
footer .text-center a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer .text-center a:hover {
    color: #ff8c00;
}
.disclaimer {
    font-size: 12px;
    color: #888;
    margin: 15px 0;
}
/* === BUTTONS === */
.btn-primary {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border: 1px solid #ffd700;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 20px;
    color: #ffd700;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #2d2d44 0%, #3d3d5c 100%);
    border-color: #ff8c00;
    color: #ff8c00;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.btn-secondary {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border: 0;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 20px;
    color: #0a0a0f;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}
/* === HEADINGS === */
h1 {
    font-size: 32px;
    text-align: center;
    margin: 20px 0;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
h2 {
    font-size: 28px;
    text-align: center;
    margin: 18px 0;
    color: #ffd700;
}
h3 {
    font-size: 24px;
    color: #ff8c00;
}
/* === BLOCK SECTIONS === */
.block {
    padding: 22px 22px;
    margin: 18px 0;
    background: linear-gradient(145deg, #12121a 0%, #1a1a2e 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}
.block p {
    color: #c0c0c0;
    line-height: 1.7;
}
.block ul, .block ol {
    color: #c0c0c0;
}
.block li {
    margin-bottom: 8px;
}
/* === BUTTON CENTER === */
.bt {
    display: flex;
    justify-content: center;
    padding: 15px;
}
.btn-center {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}
.btn-register {
    display: inline-block;
    min-width: 200px;
    height: 50px;
    line-height: 50px;
    padding: 0 35px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #0a0a0f;
    text-decoration: none;
    font-family: inherit;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
    }
}
.btn-register:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.5);
    color: #fff;
}
.btn-register:active {
    transform: translateY(0);
}
/* === IMAGES === */
.container img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.img-box {
    max-width: 760px;
    margin: 18px auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}
main img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 18px auto;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) {
    main img {
        max-width: 100%;
        border-radius: 12px;
    }
}
/* === FOOTER LOGO === */
.logofooter {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    flex-wrap: wrap;
}
.logoft {
    max-height: 50px;
    margin: 0 !important;
}
.logofooter svg {
    max-height: 50px;
    max-width: 100px;
    fill: #ffd700;
}
.gamcare svg {
    max-width: 50px;
}
.legal-plus svg {
    max-width: 50px;
}
.adm-logo img {
    max-height: 40px;
    filter: brightness(0.8);
}
@media(max-width: 500px) {
    .dmca, .gamcare, .legal-plus, .adm-logo {
        display: none;
    }
    .logofooter {
        justify-content: center;
    }
}
/* === TABLES === */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}
th, td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
th {
    font-weight: bold;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}
td {
    color: #c0c0c0;
}
/* === GLOWING TABLE === */
.table-glow {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 215, 0, 0.05);
    color: #ffffff;
    border: 1px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
    table-layout: fixed;
    animation: tableBreathGold 3.8s ease-in-out infinite;
}
@keyframes tableBreathGold {
    0% {
        box-shadow:
            0 0 10px rgba(255, 215, 0, 0.4),
            0 0 22px rgba(255, 140, 0, 0.25);
    }
    50% {
        box-shadow:
            0 0 25px rgba(255, 215, 0, 0.8),
            0 0 50px rgba(255, 140, 0, 0.5),
            0 0 80px rgba(255, 90, 0, 0.3);
    }
    100% {
        box-shadow:
            0 0 10px rgba(255, 215, 0, 0.4),
            0 0 22px rgba(255, 140, 0, 0.25);
    }
}
.table-glow th {
    background: rgba(255, 215, 0, 0.15);
    padding: 12px 15px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
}
.table-glow td {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: #e0e0e0;
}
.table-glow tr:last-child td {
    border-bottom: none;
}
.table-glow tr:hover td {
    background: rgba(255, 215, 0, 0.1);
    transition: 0.25s ease;
}
.table-glow th,
.table-glow td {
    word-wrap: break-word;
    word-break: break-word;
}
@media (max-width: 768px) {
    .table-glow {
        font-size: 14px;
    }
    .table-glow th,
    .table-glow td {
        padding: 8px 10px;
    }
}
@media (max-width: 480px) {
    .table-glow {
        font-size: 12px;
    }
    .table-glow th,
    .table-glow td {
        padding: 6px 8px;
    }
}
/* === FAQ SECTION === */
.faq-section {
    margin: 40px 0;
    padding: 30px 0;
}
.faq-title {
    text-align: center;
    margin-bottom: 40px;
    color: #ffd700;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #12121a 0%, #1a1a2e 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}
.faq-question {
    background: linear-gradient(135deg, #1a1a2e 0%, #252542 100%);
    color: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
}
.faq-question:hover {
    background: linear-gradient(135deg, #252542 0%, #2d2d5c 100%);
}
.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
    color: #e0e0e0;
}
.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(26, 26, 46, 0.8);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer div {
    padding: 20px;
}
.faq-answer p {
    margin: 0;
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 16px;
}
@media (max-width: 768px) {
    .faq-section {
        margin: 30px 0;
        padding: 20px 0;
    }
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    .faq-icon {
        font-size: 20px;
    }
    .faq-answer div {
        padding: 15px;
    }
    .faq-answer p {
        font-size: 15px;
    }
}
/* === NAV BUTTONS === */
.navbar .navbar-nav {
    gap: 10px;
}
.navbar .nav-link.nav-btn {
    color: #0a0a0f !important;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
    transition: all 0.3s ease;
}
.navbar .nav-link.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
}
.navbar .nav-link.nav-btn.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        gap: 8px;
        padding-top: 10px;
    }
    .navbar .nav-link.nav-btn {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }
}
/* === TOC (Table of Contents) === */
.toc-toggle {
    display: block;
    margin: 15px auto;
    padding: 12px 25px;
    background: linear-gradient(135deg, #1a1a2e 0%, #252542 100%);
    border: 1px solid #ffd700;
    border-radius: 10px;
    color: #ffd700;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.toc-toggle:hover {
    background: linear-gradient(135deg, #252542 0%, #2d2d5c 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.toc {
    max-width: 600px;
    margin: 15px auto;
    padding: 20px;
    background: linear-gradient(145deg, #12121a 0%, #1a1a2e 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.toc.is-collapsed {
    display: none;
}
.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc li {
    margin: 8px 0;
}
.toc a {
    color: #c0c0c0;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.toc a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 18px;
}
/* === BACK TO TOP === */
.toc-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #0a0a0f;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 1000;
}
.toc-back-top.is-visible {
    opacity: 1;
    visibility: visible;
}
.toc-back-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}
/* === CASINO LIST === */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}
.casino-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(145deg, #12121a 0%, #1a1a2e 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.casino-item:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}
.casino-badge {
    font-size: 24px;
    min-width: 40px;
    text-align: center;
}
.casino-info strong {
    color: #ffd700;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}
.casino-info p {
    color: #b0b0b0;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
/* === VINCITE GRID === */
.vincite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.vincita-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a2e 0%, #252542 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.vincita-card:hover {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}
.vincita-icon {
    font-size: 32px;
    margin-bottom: 10px;
}
.vincita-card strong {
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 5px;
}
.vincita-date {
    color: #888;
    font-size: 12px;
    margin-bottom: 10px;
}
.vincita-mult {
    color: #ffd700;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
/* === RTP HIGHLIGHT === */
.rtp-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin: 20px auto;
    max-width: 300px;
    background: linear-gradient(145deg, #1a1a2e 0%, #252542 100%);
    border: 2px solid #ffd700;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}
.rtp-value {
    font-size: 48px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.rtp-label {
    color: #b0b0b0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}
/* === LEGAL NOTICE === */
.legal-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    margin: 20px 0;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
}
.legal-icon {
    font-size: 32px;
}
.legal-notice p {
    margin: 0;
    color: #ffd700;
    font-weight: 600;
}
/* === REVIEWS === */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.review-card {
    padding: 25px;
    background: linear-gradient(145deg, #12121a 0%, #1a1a2e 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.review-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.1);
}
.review-text {
    color: #c0c0c0;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}
.review-author {
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}
/* === PAYMENT METHODS === */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}
.payment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(145deg, #12121a 0%, #1a1a2e 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.payment-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(145deg, #1a1a2e 0%, #252542 100%);
}
.payment-icon {
    font-size: 28px;
    min-width: 40px;
    text-align: center;
}
.payment-info strong {
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
}
.payment-info p {
    color: #a0a0a0;
    margin: 0;
    font-size: 14px;
}
/* === PROS & CONS === */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.pros, .cons {
    padding: 25px;
    border-radius: 12px;
}
.pros {
    background: linear-gradient(145deg, #0d2818 0%, #1a4d2e 100%);
    border: 1px solid rgba(0, 255, 100, 0.3);
}
.cons {
    background: linear-gradient(145deg, #2d1a1a 0%, #4d2626 100%);
    border: 1px solid rgba(255, 100, 100, 0.3);
}
.pros h4, .cons h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}
.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pros li, .cons li {
    padding: 8px 0;
    color: #c0c0c0;
    font-size: 14px;
}
/* === STAT LIST === */
.stat-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.stat-list li {
    padding: 10px 15px;
    margin: 5px 0;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid #ffd700;
    border-radius: 0 8px 8px 0;
    color: #c0c0c0;
}
/* === BONUS LIST === */
.bonus-list {
    list-style: none;
    padding: 0;
}
.bonus-list li {
    padding: 12px 15px;
    margin: 8px 0;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    color: #c0c0c0;
}
/* === DOWNLOAD STEPS === */
.download-steps, .registration-steps, .guide-steps, .login-steps, .sisal-steps, .bonus-steps, .bonus-tips, .freespin-tips, .benefits-list, .bonus-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.download-steps li, .registration-steps li, .guide-steps li, .login-steps li, .sisal-steps li, .bonus-steps li, .bonus-tips li, .freespin-tips li, .benefits-list li, .bonus-features li {
    padding: 12px 20px;
    margin: 8px 0;
    background: linear-gradient(145deg, #1a1a2e 0%, #252542 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    color: #c0c0c0;
    transition: all 0.3s ease;
}
.download-steps li:hover, .registration-steps li:hover, .guide-steps li:hover, .login-steps li:hover, .sisal-steps li:hover, .bonus-steps li:hover, .bonus-tips li:hover, .freespin-tips li:hover, .benefits-list li:hover, .bonus-features li:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}
/* === RESPONSIVE === */
@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    .block {
        padding: 15px;
        margin: 12px 0;
    }
    .btn-register {
        min-width: 160px;
        height: 45px;
        line-height: 45px;
        font-size: 14px;
        padding: 0 25px;
    }
    .vincite-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 20px;
    }
    .toc-back-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}