body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo img {
    height: 120px;
}
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
nav ul li {
    position: relative;
    margin-left: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    display: block;
}
nav ul .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    min-width: 150px;
}
nav ul li:hover .dropdown {
    display: block;
}
main {
    padding: 20px;
}

.container {
    max-width: 1200px;  /* Imposta una larghezza massima */
    margin: 0 auto;      /* Centra il contenuto */
    padding: 0 20px;     /* Aggiunge un po' di spazio ai lati */
}
.casino-card {
    display: flex;
    align-items: center;
    background: #0d3b5f;
    color: white;
    padding: 15px;
    margin: 10px auto; /* Auto per centrare all'interno del container */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    max-width: 100%; /* Assicura che non superi il container */
}

.casino-card img {
    width: 200px;
    height: 110px;
    border-radius: 10px;
    margin-right: 15px;
}
.rank {
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    font-weight: bold;
}
.visit-button {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    transition: background 0.3s;
}
.visit-button:hover {
    background: #218838;
}

.casino-card-bonus {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.casino-card-bonus-line {
    width: 100%;
    height: 2px;
    background-color: #007bff;
    margin-bottom: 8px;
}

.casino-card-terms {
    font-size: 14px;
    color: #B6B2B2;
    line-height: 1.4;
}


#review-button {
    text-align: center;
    margin: 20px 0;
}
.review-button {
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}
.review-button:hover {
    background: #cc5500;
}



#article {
    max-width: 800px;
    margin: 20px auto;
    text-align: justify;
    padding: 20px;
}
#slot-machines {
    text-align: center;
    padding: 20px;
}
.slot-card {
    display: inline-block;
    background: white;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
}
.slot-card img {
    width: 100%;
    border-radius: 10px;
}
.play-slot {
    display: block;
    text-align: center;
    background: #007bff;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}
.play-slot:hover {
    background: #0056b3;
}
#detailed-casino-cards {
    background: #e6ecf0;
    padding: 30px;
    margin-top: 20px;
}
.detailed-casino-card {
    display: flex;
    background: #f2f5f8;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
}
.detailed-casino-card img {
    width: 100px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}
.casino-info-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
.casino-details {
    max-width: 250px;
    text-align: left;
}
.casino-details p {
    margin: 5px 0;
    font-size: 14px;
    font-weight: bold;
}
.casino-review {
    flex: 2;
    padding-left: 20px;
    text-align: left;
}
.review-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
.review-link:hover {
    text-decoration: underline;
}

/* Sezione specifica per la pagina di recensione dei casinÃ² */
.casino-review-card {
    display: flex;
    align-items: center;
    background: #0d3b5f;
    color: white;
    padding: 20px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}
.casino-logo img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    background: white;
    padding: 10px;
}
.casino-info {
    flex: 1;
    padding: 0 20px;
    text-align: left;
}
.casino-info h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}
.bonus-amount {
    font-size: 22px;
    font-weight: bold;
    color: yellow;
}
.casino-info ul {
    list-style: none;
    padding: 0;
}
.casino-info ul li {
    padding: 5px 0;
    font-size: 14px;
}
.visit-button-container {
    display: flex;
    align-items: center;
}
.visit-button {
    background: #28a745;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    font-size: 18px;
}
.visit-button:hover {
    background: #218838;
}
.casino-rating {
    display: flex;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}
.rating-box {
    background: #f0f0f0;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.rating-box span {
    display: block;
    font-size: 14px;
    font-weight: normal;
}
.highlight {
    background: #007bff;
    color: white;
    font-size: 18px;
}
.rated-by {
    margin-left: 10px;
    font-size: 14px;
    font-style: italic;
    color: #555;
}

/* Sezione specifica per la pagina di recensione dei casinÃ² */
.casino-info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.casino-features, .payments {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.casino-features h2, .payments h2 {
    background: #0d3b5f;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
.casino-features ul, .payments ul {
    list-style: none;
    padding: 0;
}
.casino-features li, .payments li {
    padding: 5px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

/* Sezione dei fornitori di giochi */
.game-providers {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.game-providers h2 {
    background: #0d3b5f;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
.game-providers ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.game-providers li {
    background: #f0f0f0;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 14px;
}

/* Sezione specifica per i metodi di pagamento */
#payments {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
#payments h2 {
    background: #0d3b5f;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
#payments table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
#payments th, #payments td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
#payments th {
    background-color: #0d3b5f;
    color: white;
    font-weight: bold;
}
#payments tr:nth-child(even) {
    background-color: #f2f2f2;
}
#payments tr:hover {
    background-color: #ddd;
}

/* Sezione Pro e Contro */
.pros-cons {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.pros, .cons {
    flex: 1;
    padding: 10px;
}
.pros h2, .cons h2 {
    margin-bottom: 10px;
}
.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}
.pros li {
    background: #b3e5fc;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    font-weight: bold;
}
.cons li {
    background: #ffcdd2;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    font-weight: bold;
}

.bonus-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.bonus-card {
    width: 150px;
    height: 120px;
    background: white;
    border: 2px dashed #3c9ea8;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus-value {
    font-size: 20px;
    font-weight: bold;
    color: #007b7f;
}

.bonus-icon {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.bonus-icon.yes {
    color: #2bb673;
}

.bonus-icon.no {
    color: #e74c3c;
}

.bonus-card p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #333;
}


.other-casinos {
    background: #0d3b5f;
    color: #3c9ea8;
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
}

.other-casinos h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #3c9ea8;
}

.casino-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.casino-card-review {
    background: linear-gradient(135deg, #1a2a44, #3c4045);
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.casino-header img {
    width: 40px;
    border-radius: 5px;
}

.casino-header h3 {
    font-size: 18px;
    margin: 0;
}

.highlight {
    font-weight: bold;
    font-size: 18px;
    color: #3c9ea8;
}

.icon {
    font-size: 18px;
    font-weight: bold;
}

.icon.yes {
    color: #2bb673;
}

.icon.no {
    color: #e74c3c;
}

.rating-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin: 10px 0;
}

.bar {
    flex: 1;
    background: #222;
    height: 5px;
    border-radius: 5px;
    margin: 0 10px;
    position: relative;
}

.fill {
    height: 5px;
    background: linear-gradient(90deg, #f39c12, #3c9ea8);
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
}

.casino-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    display: block;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px dashed #3c9ea8;
}

.btn.review {
    color: white;
    background: transparent;
}

.btn.review:hover {
    background: #3c9ea8;
}

.btn.play {
    background: transparent;
    color: #3c9ea8;
}

.btn.play:hover {
    background: #2bb673;
    color: white;
    border: 2px dashed white;
}

/* ResponsivitÃ  */
@media (max-width: 1024px) {
    .casino-grid {
        flex-wrap: wrap;
    }

    .casino-card-review {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .casino-card-review {
        width: 100%;
    }
}


.casino-conclusion {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.casino-conclusion h2 {
    font-size: 26px;
    color: #0d3b5f;
    margin-bottom: 20px;
}

.conclusion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.review-text, .review-summary {
    width: 30%;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.review-summary {
    border: 2px dotted #3c9ea8;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    color: #0d3b5f;
}

.rating-circle {
    width: 150px;
    height: 150px;
    background: conic-gradient(#3c9ea8 0% 86%, #ddd 86% 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.rating-circle::after {
    content: "";
    width: 110px;
    height: 110px;
    background: white;
    position: absolute;
    border-radius: 50%;
    z-index: 1; /* Questo crea il buco bianco interno */
}

.percentage {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    color: #3c9ea8;
    z-index: 2; /* Porta la percentuale sopra il cerchio */
    text-align: center;
}

.rating-text {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    top: 50px; /* ðŸ”¥ Sposta il testo sotto la percentuale */
    text-align: center;
    z-index: 3;
}
/* ResponsivitÃ  */
@media (max-width: 768px) {
    .conclusion-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .review-text, .review-summary {
        width: 90%;
        text-align: center;
        margin-bottom: 20px;
    }
}


#support-table {
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
}

#support-table h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.support-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-start; /* Mantiene gli elementi allineati in alto */
}

.support-card {
    background: white;
    padding: 15px 20px;
    min-width: 140px; /* Imposta una larghezza minima */
    max-width: 100%; /* Evita che si allarghi troppo */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px dotted #008080;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    word-wrap: break-word; /* Permette il ritorno a capo */
    text-align: center;
    flex-grow: 1; /* Permette ai riquadri di adattarsi al contenuto */
}

.support-card strong {
    font-size: 18px;
    color: #008080;
    white-space: nowrap; /* Evita la rottura del testo */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* Si adatta alla larghezza del contenitore */
}

.support-card span {
    font-size: 14px;
    margin-top: 5px;
}

.icon {
    font-size: 22px;
    font-weight: bold;
}

.icon.yes {
    color: #34a853; /* Verde */
}

.icon.no {
    color: #ea4335; /* Rosso */
}
/* Fine sezione specifica per la pagina di recensione dei casinÃ² */

/* Inizio sezione specifica per la pagina di recensione dei bonus */

.little-bonus-container {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-content: center;
}

.little-bonus-card {
    background: #0d3b5f; /* Sfondo coerente con il sito */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.little-bonus-card:hover {
    transform: translateY(-5px);
}

.little-bonus-header {
    font-size: 14px;
    font-weight: bold;
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.little-bonus-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.little-bonus-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.little-bonus-info {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.little-bonus-amount {
    font-size: 22px;
    font-weight: bold;
    color: #f1c40f;
}

.little-bonus-terms {
    font-size: 12px;
    color: #ddd;
    margin-top: 5px;
}

.little-bonus-buttons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.little-bonus-buttons a {
    display: block;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.little-bonus-play {
    background: #28a745;
    color: white;
}

.little-bonus-play:hover {
    background: #218838;
}

.little-bonus-review {
    background: transparent;
    color: #f1c40f;
    border: 2px dashed #f1c40f;
}

.little-bonus-review:hover {
    background: #f1c40f;
    color: #0d3b5f;
}

/* Responsività */
@media (max-width: 768px) {
    .little-bonus-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Fine sezione specifica per la pagina di recensione dei bonus */

/* Inizio sezione specifica per la pagina di recensione delle slots */

/* Slot Review Header */
.slot-review-header {
    display: flex;
    align-items: center;
    background: #bcd2e6;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.slot-review-logo img {
    width: 100px;
    border-radius: 10px;
    background: #bcd2e6;
    padding: 10px;
}
.slot-review-logo {
    position: relative;
    margin-right: 20px;
}
.slot-review-rating {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: #007bff;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}
.slot-review-title {
    flex: 1;
    text-align: left;
}
.slot-review-title h1 {
    margin: 0;
    font-size: 26px;
}
.slot-review-subtitle {
    font-size: 18px;
    color: #555;
}
.slot-review-update {
    font-size: 14px;
    color: #777;
}
.slot-review-play-button {
    margin-top: 10px;
}
.slot-review-play-btn {
    background: #ff6600;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}
.slot-review-play-btn:hover {
    background: #cc5500;
}

/* Slot Review Description */
.slot-review-description {
    background: #eef4fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}
.slot-review-description p {
    margin: 0;
    font-size: 16px;
}

/* Slot Review Features */
.slot-review-features h2 {
    text-align: center;
    margin-bottom: 20px;
}
.slot-review-features-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.slot-review-feature {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
}
.slot-review-feature h3 {
    margin: 0 0 10px;
}

/* Slot Review Profile */
.slot-review-profile {
    text-align: center;
    margin: 20px 0;
}
.slot-review-profile h2 {
    margin-bottom: 20px;
}
.slot-review-profile-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    justify-content: center;
}
.slot-review-profile-item {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    border: 2px dotted #2e4b66;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.slot-review-profile-item .icon {
    font-size: 24px;
    margin-bottom: 5px;
}
.slot-review-profile-item .icon.check {
    color: #28a745;
}
.slot-review-profile-item .icon.cross {
    color: #dc3545;
}

/* Slot Review Gameplay */
.slot-review-gameplay {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Slot Bonus Features */
.slot-review-bonus {
    text-align: center;
    margin-bottom: 20px;
}
.slot-review-bonus h2 {
    margin-bottom: 20px;
}
.slot-review-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    justify-content: center;
}
.slot-review-bonus-item {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    border: 2px dotted #2e4b66;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.slot-review-bonus-item .icon {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Icone nei Bonus Features */
.slot-review-bonus-item .icon.check {
    color: #28a745;
}
.slot-review-bonus-item .icon.cross {
    color: #dc3545;
}

/* Slot Review Demo */
.slot-review-demo {
    text-align: center;
    margin-top: 20px;
}
.slot-review-demo-btn {
    background: #007bff;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}
.slot-review-demo-btn:hover {
    background: #0056b3;
}

/* Slot Info Table */
.slot-info {
    background: #bcd2e6; /* Colore di sfondo simile all'immagine */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.slot-info h2 {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 3px solid #2e4b66;
    padding-bottom: 5px;
}

.slot-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.slot-info-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
}

.slot-info-item .icon {
    font-size: 22px;
    margin-right: 10px;
    color: #7e57c2;
}

.slot-info-item strong {
    color: #1a1a1a;
}

/* Responsiveness */
@media (max-width: 768px) {
    .slot-info-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Informational Section */
.slot-info-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.slot-info-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 3px solid #2e4b66;
    padding-bottom: 5px;
}

.slot-info-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.slot-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.slot-text {
    flex: 1;
    min-width: 300px;
}

.slot-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.slot-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .slot-info-container {
        flex-direction: column;
    }
}

.similar-slots {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.similar-slots h2 {
    font-size: 26px;
    font-weight: bold;
    color: #0d1b3f;
    margin-bottom: 15px;
}

.slot-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.similar-slot-card {
    background: #eef4fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.similar-slot-card:hover {
    transform: translateY(-5px);
}

.similar-slot-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.similar-slot-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.similar-slot-card p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.read-review {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.read-review:hover {
    text-decoration: underline;
}

.casino-slot-section {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.casino-slot-section h2 {
    font-size: 26px;
    font-weight: bold;
    color: #0d1b3f;
    margin-bottom: 20px;
}

.casino-slot-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-slot-rectangle-card {
    display: flex;
    align-items: center;
    background: #eef4fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    justify-content: space-between;
}

.casino-slot-rectangle-card:hover {
    transform: translateY(-5px);
}

.casino-slot-logo img {
    width: 120px;
    height: auto;
    border-radius: 8px;
}

.casino-slot-info {
    flex: 1;
    text-align: left;
    padding: 0 20px;
}

.casino-slot-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.casino-slot-info p {
    font-size: 16px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 5px;
}

.casino-slot-rating {
    font-size: 14px;
    color: #666;
}

.casino-slot-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.casino-slot-buttons a {
    background: #001f3f;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
    display: inline-block;
    width: 150px;
    text-align: center;
}

.casino-slot-buttons a:hover {
    background: #004080;
}

.casino-slot-terms {
    font-size: 12px;
    color: #666;
    text-align: left;
    margin-top: 5px;
}

.conclusion-slot {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.conclusion-slot-text {
    flex: 2;
    text-align: left;
}

.conclusion-slot-text h2 {
    font-size: 26px;
    font-weight: bold;
    color: #0d1b3f;
    margin-bottom: 10px;
}

.conclusion-slot-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.conclusion-slot-text strong {
    color: #007bff;
}

.conclusion-slot-rating {
    flex: 1;
    text-align: center;
}

.conclusion-slot-rating-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#007bff 85%, #eef4fa 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    color: #0d1b3f;
    position: relative;
}

.conclusion-slot-rating-circle::after {
    content: "";
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.conclusion-slot-rating-text {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    z-index: 10;
}

/* Responsiveness */
@media (max-width: 768px) {
    .conclusion-slot {
        flex-direction: column;
        text-align: center;
    }

    .conclusion-slot-rating {
        order: -1;
    }
}

/* Fine sezione specifica per la pagina di recensione delle slots */

/* Inizio sezione specifica per la pagina delle migliori slots */

.little-slots-container {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.little-slots-card {
    background: #0d3b5f; /* Sfondo adattato ai colori del sito */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.little-slots-card:hover {
    transform: translateY(-5px);
}

.little-slots-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.little-slots-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 5px;
}

.little-slots-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.little-slots-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
}

.little-slots-info div {
    text-align: left;
    font-size: 14px;
    color: #ddd;
}

.little-slots-info strong {
    display: block;
    font-size: 16px;
    color: #f1c40f;
}

.little-slots-buttons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.little-slots-buttons a {
    display: block;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.little-slots-play {
    background: #28a745;
    color: white;
}

.little-slots-play:hover {
    background: #218838;
}

.little-slots-review {
    background: transparent;
    color: #f1c40f;
    border: 2px dashed #f1c40f;
}

.little-slots-review:hover {
    background: #f1c40f;
    color: #0d3b5f;
}

/* Responsività */
@media (max-width: 768px) {
    .little-slots-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* Fine sezione specifica per la pagina delle migliori slots */


/* FAQ */

.faq-container {
    max-width: 1200px;
    margin: 40px auto;
    background: #eef4fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.faq-answer p {
    margin: 0;
    padding: 10px 0;
    color: #555;
    font-size: 16px;
}
/* Fine FAQ */


/* Nuovo Footer */
.site-footer {
    background: linear-gradient(to right, #0b2d4b, #0d3b5f, #0f4a75);
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    padding: 40 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 400px;
	margin-right: 40px;
	margin-left: 20px;
    flex: 1;
}

.footer-left img {
    max-width: 180px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
	margin-right: 20px;
}

.footer-column {
    min-width: 150px;
	}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}

/* Responsiveness */
@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        text-align: center;
        margin: 0 auto;  /* Centra il blocco */
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    .casino-card, .detailed-casino-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .casino-info-container {
        flex-direction: column;
    }
    .visit-button, .play-slot {
        margin-top: 10px;
    }
    .slot-card {
        width: 90%;
        margin: 10px auto;
    }
}

/* ResponsivitÃ  */
@media (max-width: 768px) {
    .bonus-section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bonus-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        width: 90%;
    }
}