
/* MyHotSlots Casino Affiliate Website Styles */
/* Colors: Gradient from #e6dada to #274046 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: "Neucha", cursive;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #e6dada 0%, #f5f2f2 25%, #d4e4e8 75%, #274046 100%);
    min-height: 100vh;
}

:root {
  --primary: #3b82f6;     /* galvenā krāsa */
  --secondary: #9333ea;   /* papildkrāsa */
  --text-color: #1f2937;  /* teksta krāsa */
  --bg-color: #ffffff;    /* fona krāsa */
  --gradient-btn: linear-gradient(135deg, #ff6b6b, #feca57); /* gradienta poga */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}



.highlight {
    background: linear-gradient(120deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffa500;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    
}

.nav-logo-link {
    text-decoration: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    
}

.icon1 {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo h2 {
    color: #b15252;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-logo-icon {
    width: 50px;
    height: 50px;
    margin-left: -10px;
    vertical-align: middle;
    
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b6b;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e6dada 0%, #274046 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./assets/bc-hottest.png) no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}

.hero-text {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: #f1eeee;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    line-height:4.7rem;
}

.hero-subtitle {
    font-size: 1.45rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
    position: relative;
    bottom: -200px;

}

.stat {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    color: #242323;
    backdrop-filter: blur(10px);
    font-weight: lighter;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.btn-claim {
    background: var(--gradient-btn);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 172, 132, 0.3);
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 172, 132, 0.4);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}



.btn-calculate {
    background: linear-gradient(135deg, #274046, #3d5a61);
    color: #ffffff;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #274046, #1a1a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Picks Section */
.quick-picks {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.quick-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-pick-card {
    background: #f0eeee;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(39,64,70,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.casino-img {
    width: 100%;
    height: 150px;
    margin-bottom: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #274046, #3d5a61);
    object-fit: contain;
    transform: scale(.7);
}


.quick-pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
}

.quick-pick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}



.casino-info h3 {
    font-size: 1.5rem;
    color: #274046;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffa500;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bonus {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10ac84;
    margin-bottom: 0.5rem;
}

.wagering {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Hot Bonuses Section */
.hot-bonuses {
    background: linear-gradient(135deg, rgba(230, 218, 218, 0.3), rgba(39, 64, 70, 0.1));
}

.bonus-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #274046;
    background: transparent;
    color: #274046;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #274046;
    color: #ffffff;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-card {
    background: #f1f1f1ec;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(39,64,70,0.1);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.casino-img2 {
    width: 50%;
}

.xxx {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.bonus-card h3 {
    margin-top: 1rem;
    color: #274046;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10ac84;
    margin-bottom: 1rem;
}

.bonus-details {
    margin-bottom: 1.5rem;
}

.bonus-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.bonus-code {
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: bold;
    color: #e74c3c;
}

.terms-link {
    text-align: center;
    margin-top: 1rem;
}

.terms-link a {
    color: #666;
    font-size: 0.8rem;
    text-decoration: underline;
}

/* Bonus Calculator */
.bonus-calculator {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-inputs {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.calculator-inputs input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 200px;
}

.calculator-result {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 600;
}

/* Casino Reviews Section */
.casino-reviews {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.reviews-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(39,64,70,0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.casino-logo {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #274046, #3d5a61); */
    color: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.casino-title {
    flex: 1;
}

.casino-title h3 {
    margin-bottom: 0.5rem;
    color: #274046;
}

.rating {
    color: #ffa500;
    font-weight: 600;
}

.license-badge {
    background: #10ac84;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}


.detail-img-caino {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.fact-label {
    font-weight: 600;
    color: #666;
}

.fact-value {
    font-weight: 700;
    color: #274046;
}

.review-content {
    margin-bottom: 2rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pros h4 {
    color: #10ac84;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.review-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #274046;
}

.payment-methods h4 {
    margin-bottom: 1rem;
    color: #274046;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-method {
    background: #274046;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid #f8f9fa;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Comparison Table */
.comparison-table-container {
    margin-top: 3rem;
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    
}

.table-wrapper {
    overflow-x: auto;
}

.table-wrapper a {
    color: #274046;
    font-weight: 600;
    text-decoration: none;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background: #274046;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

/* Top Casinos Categories */
.top-casinos {
    background: linear-gradient(135deg, rgba(39, 64, 70, 0.1), rgba(230, 218, 218, 0.3));
}

.casino-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(39,64,70,0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-card h3 {
    color: #274046;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.casino-list {
    list-style: none;
    margin-bottom: 2rem;
}

.casino-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.casino-list li a {
    color: #274046;
    font-weight: 400;
    text-decoration: none;
    flex: 1;
}

.rank {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 30px;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #274046;
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-info li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.response-time {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #274046;
}

.response-time h4 {
    color: #274046;
    margin-bottom: 1rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #274046;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #274046;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.contact-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #274046, #1a2c32);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #b0c4c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0c4c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #feca57;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-stat {
    text-align: center;
}

.footer-stat strong {
    display: block;
    font-size: 1.5rem;
    color: #feca57;
}

.footer-stat span {
    font-size: 0.9rem;
    color: #b0c4c7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.legal-notice,
.affiliate-disclosure,
.copyright {
    margin-bottom: 1rem;
    color: #b0c4c7;
    font-size: 0.9rem;
    line-height: 1.6;
}

.legal-notice a {
    color: #feca57;
    text-decoration: none;
}

.legal-notice a:hover {
    text-decoration: underline;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #274046;
}

/* Responsible Gambling Widget */
.gambling-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.gambling-widget a {
    color: #ffffff;
    text-decoration: none;
}


.news {
    margin: 0 auto;
}

.news-box {
    display: flex;
    flex: 1;
}

.news-grid{
    display: flex;
    flex-direction: column;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-picks-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-inputs input {
        width: 100%;
        max-width: 300px;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .gambling-widget {
        bottom: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
        line-height: normal;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .bonus-card,
    .review-card,
    .category-card {
        margin: 0 10px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
        font-size: 0.7rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .gambling-widget,
    .modal {
        display: none !important;
    }
    
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .btn {
        background: #cccccc !important;
        color: #000000 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background: #ffffff;
        color: #000000;
    }
    
    .btn-primary {
        background: #000000;
        color: #ffffff;
    }
    
    .btn-secondary {
        background: #ffffff;
        color: #000000;
        border: 2px solid #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    margin-top: 70px;
    border-bottom: 2px solid rgba(39, 64, 70, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
}

.breadcrumb-item a {
    color: #274046;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ff6b6b;
}

.breadcrumb-item.active {
    color: #ff6b6b;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #999;
    margin: 0 0.25rem;
}

/* Related Content Section */
.related-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.related-content h3 {
    color: #274046;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.related-link-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #274046;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-link-card:hover {
    transform: translateX(5px);
    border-left-color: #ff6b6b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-link-card h4 {
    color: #274046;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.related-link-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Review Page Specific Styles */
.review-hero {
    background: linear-gradient(135deg, #e6dada 0%, #274046 100%);
    padding: 100px 0 60px 0;
    position: relative;
}

.review-hero-content {
    text-align: center;
    color: #ffffff;
}

.review-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.review-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.review-detailed {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.review-section {
    margin-bottom: 3rem;
}

.review-section h3 {
    color: #274046;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

/* Casino Listing Grid */
.casino-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.casino-listing-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(39, 64, 70, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.casino-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.casino-listing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 15px 15px 0 0;
}
