/* Globale Styles */
@font-face {
    font-family: Montserrat;
    src: url("./font/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url("./font/Montserrat-Medium.ttf") format("truetype");
        font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url("./font/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}


:root {
    --primary-color: #4b1358ff;
    --secondary-color: #8d26e2;
    --accent-color: #d834f5;
    --dark-color: #000000;
    --light-color: #f1deff;
    --success-color: #8d30da;
    --border-radius: 12px;
    --white: #fff;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --gray: #f2cdfe;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ol li{
    list-style: numeric inside;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

.logo span {
    color: var(--accent-color);
}

h5{
    margin: 10px 0 4px 0;
}

ul{
    list-style: none;
    margin: 2px 0 14px 0;
}

ul li::before {
  content: "🔵 ";
}

header ul li::before, .casino-features li::before{
      content: " ";
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Hauptinhalt */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.hero {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url(./img/layer.webp);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all 0.3s ease;
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: #f8f9fa;
}

blockquote{
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    line-height: 1.75rem;
    padding-left: 6px;
    margin: 14px 18px;
}
/* Casino Liste */
.casino-list {
    margin-bottom: 3rem;
}

.casino-list h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.casino-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
}

.casino-info ul li{
    list-style: none;
}

.author-section {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: relative; 

}
.author-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.author-title {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 5px;
}

.update-info {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 20px;
    font-style: italic;
}
.hidden-checkbox {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.transparency-section {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #eee;
    display: none;
}

.transparency-section h4 {
    color: var(--dark-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.brand-history {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
}
.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.show-more{
    display: flex;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #60cfff70;   
    cursor: pointer; 
    font-weight: 700;   
    position: relative;
}


.show-more::after {
    content: "🔽";
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s;
}

#show-more-checkbox {
    display: none;
}

#show-more-checkbox:checked ~ .transparency-section {
    display: block;
}

#show-more-checkbox:checked ~ .show-more::after {
    transform: rotate(180deg);
}

/* Стили для таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

table tr:nth-child(even) {
    background-color: var(--gray);
}

table tr:hover {
    background-color: rgba(4, 180, 255, 0.637);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}
h4{
     color: var(--primary-color);
    font-size: 1.2rem;   
}



.brand-section{
    /* max-width: 80%; */
    box-shadow: var(--box-shadow);
    padding: 4% 5%;
    border-radius: var(--border-radius);

}

.brand-section table{
      border-collapse: collapse;
}

.brand-section table th, table td{
    background-color: var(--white);
    color: var(--dark-color);
}



.casino-review{
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.plus, .minus{
    background-color: var(--gray);
    display: inline-block;
    padding: 6px 22px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
}

.plus::after{
    content: '✅';
    padding: 0 0 0 6px;
}

.minus::after{
    content: '❌';
    padding: 0 0 0 6px;
}

.casino-logo {
    flex: 0 0 150px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    background-color: #000;
    border-radius: var(--border-radius);
}


.casino-info {
    flex: 1;
}

.casino-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.casino-features {
    margin: 1rem 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.casino-features li {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.payment-method {
    width: 50px;
    height: 30px;
    object-fit: contain;
    margin-right: 0.5rem;
    background-color: white;
    padding: 0.2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus-badge {
    background-color: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
}

/* Info Section */
.info-section {
    margin: 30px auto;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);

}

.info-section h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-section h3 {
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.benefits-list, .steps-list {
    margin: 1rem 0 1rem 2rem;
}

.benefits-list li, .steps-list li {
    margin-bottom: 0.5rem;
}

/* Bonus Section */
.bonus-section {
    margin-bottom: 3rem;
}

.bonus-section h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.bonus-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.bonus-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bonus-card p {
    margin-bottom: 1rem;
}

.bonus-code {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 3rem;
}

.reviews-section h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.review-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
}

.rating {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.brand-section  h3{
    color: #000;
}


/*  */
.paypal-advantages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  line-height: 1.6;
}

.advantage-wrap {
  margin-bottom: 40px;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.advantage-img {
  float: left;
  width: 150px;
  margin: 0 15px 15px 0;
  border-radius: 100%;
}

.advantage-wrap p {
  text-align: justify;
}

@media (max-width: 768px) {
  .advantage-wrap{
        max-width: 96%;
        margin: 0 auto;
        padding: 0;
    }
    .advantage-item {
  display: flow-root; /* Clearfix */
  margin-bottom: 10px;
  padding: 8px;
}
.advantage-img {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}


/* FAQ*/

.paypal-faq {
  background-color: var(--light-color);
  padding: 40px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 0 auto;
}

.paypal-faq h2 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 28px;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--gray);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: block;
  padding: 16px 20px;
  background-color: var(--gray);
  color: var(--dark-color);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.faq-item input[type="checkbox"]:checked + .faq-question {
  background-color: var(--primary-color);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: var(--white);
  padding: 0 20px;
}

.faq-item input[type="checkbox"]:checked + .faq-question + .faq-answer {
  max-height: 500px;
  padding: 16px 20px;
}


/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 3rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
    text-align: start;
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: start;
}

.cta-autor{
    display: flex;
}

.cta-autor img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .casino-logo {
        margin-bottom: 0;
        margin-right: 1.5rem;
    }

 
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .casino-features li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    header nav{
        display: none;
    }

    .hero {
        padding: 2rem 1rem;
    }
    
    .casino-card {
        padding: 1rem;
        flex-direction: column;
    }

    .author-section{
        padding: 10px;
        margin: 10px auto;
        width: 96%;
    }

    .bonus-badge{
        font-size: 1rem;
        padding: 4px 6px;
        margin: 10px auto;
    }
    
    .casino-info h3 {
        font-size: 1.3rem;
    }

    .casino-review{
        flex-direction: column;
    }
    
    .bonus-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }

    .btn{
        padding: 10px 14px;
    }

    .container{
        max-width: 96%;
        margin: 6px auto;
        padding: 0;
    }

  .table-wrapper {
    padding: 0 1rem;
  }

  .table-wrapper table {
    width: 600px; /* ширина больше экрана, чтобы можно было скроллить */
  }

  table{
    font-size: 0.8rem;
  }

  .advantage-wrap img{
    max-width: 100px;
    height: auto;
    margin: 10px auto;
  }

  .cta-autor{
    flex-direction: column;
  }
}