/* Finnish-themed Casino Offer Page Styles */
/* Jua font class */
.jua-regular {
  font-family: "Jua", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
    --primary-blue: #0053a5;
    --light-blue: #e6f3ff;
    --sky-blue: #b3d9ff;
    --accent-blue: #0066cc;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --green: #4CAF50;
    --yellow: #ffd700;
    --red: #ff4136;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Hero Section */
.hero {
    background: linear-gradient(180deg, #b3d9ff 0%, #e6f3ff 100%);
    position: relative;
    padding: 20px 0 80px;
    overflow: hidden;
}

/* Cloud and mountain decorations */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('../images/mountains.svg');
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: contain;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../images/clouds.svg');
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    opacity: 0.7;
    z-index: 0;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

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

.finnish-flag {
    width: 24px;
    height: 18px;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: "Jua", sans-serif;
}

.logo span {
    color: var(--accent-blue);
}

.nav-buttons .nav-cta {
    background-color: var(--green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    font-family: "Jua", sans-serif;
}

.nav-buttons .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-text {
    text-align: center;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: "Jua", sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.trust-item i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--primary-blue);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item i.fa-user-clock {
    color: var(--green);
}

.trust-item i.fa-money-bill-wave {
    color: var(--accent-blue);
}

.trust-item i.fa-shield-alt {
    color: var(--primary-blue);
}

.trust-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-gray);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    font-family: "Jua", sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background-color: #45a049; /* Slightly darker green on hover */
}

.cta-button i {
    margin-left: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Casino Listings Section */
.casino-listings {
    padding: 60px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-family: "Jua", sans-serif;
}

.casino-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

/* Casino card variations */
.casino-card:nth-child(1) {
    background: linear-gradient(to bottom, #ffffff, #f8f9ff);
}

.casino-card:nth-child(2) {
    background: linear-gradient(to bottom, #ffffff, #f0f8ff);
}

.casino-card:nth-child(3) {
    background: linear-gradient(to bottom, #ffffff, #fff0f5);
}

.casino-card:nth-child(4) {
    background: linear-gradient(to bottom, #ffffff, #fff8e1);
}

.casino-card:nth-child(5) {
    background: linear-gradient(to bottom, #ffffff, #e0f2f1);
}

.casino-card:nth-child(6) {
    background: linear-gradient(to bottom, #ffffff, #f3e5f5);
}

.casino-card:nth-child(7) {
    background: linear-gradient(to bottom, #ffffff, #efebe9);
}

.casino-card:nth-child(8) {
    background: linear-gradient(to bottom, #ffffff, #eceff1);
}

.casino-card:nth-child(9) {
    background: linear-gradient(to bottom, #ffffff, #ffebee);
}

.casino-card:nth-child(10) {
    background: linear-gradient(to bottom, #ffffff, #e8f5e9);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Add decorative corner elements to cards */
.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: radial-gradient(circle at top right, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.casino-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle at bottom left, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

/* Card-specific decorative elements */
.casino-card:nth-child(1)::before {
    background-image: radial-gradient(circle at top right, rgba(0, 83, 165, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(2)::before {
    background-image: radial-gradient(circle at top right, rgba(63, 81, 181, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(3)::before {
    background-image: radial-gradient(circle at top right, rgba(233, 30, 99, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(4)::before {
    background-image: radial-gradient(circle at top right, rgba(255, 152, 0, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(5)::before {
    background-image: radial-gradient(circle at top right, rgba(0, 150, 136, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(6)::before {
    background-image: radial-gradient(circle at top right, rgba(103, 58, 183, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(7)::before {
    background-image: radial-gradient(circle at top right, rgba(121, 85, 72, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(8)::before {
    background-image: radial-gradient(circle at top right, rgba(96, 125, 139, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(9)::before {
    background-image: radial-gradient(circle at top right, rgba(244, 67, 54, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-card:nth-child(10)::before {
    background-image: radial-gradient(circle at top right, rgba(76, 175, 80, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.casino-tag {
    position: absolute;
    top: 15px;
    left: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 8px 20px 8px 15px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0 20px 20px 0;
    z-index: 1;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid var(--green);
    font-family: "Jua", sans-serif;
}

/* Casino tag variations */
.casino-card:nth-child(2) .casino-tag {
    background: linear-gradient(135deg, #3f51b5, #536dfe);
    border-left-color: #8c9eff;
}

.casino-card:nth-child(3) .casino-tag {
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-left-color: #f8bbd0;
}

.casino-card:nth-child(4) .casino-tag {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    border-left-color: #ffe0b2;
}

.casino-card:nth-child(5) .casino-tag {
    background: linear-gradient(135deg, #009688, #4db6ac);
    border-left-color: #b2dfdb;
}

.casino-card:nth-child(6) .casino-tag {
    background: linear-gradient(135deg, #673ab7, #9575cd);
    border-left-color: #d1c4e9;
}

.casino-card:nth-child(7) .casino-tag {
    background: linear-gradient(135deg, #795548, #a1887f);
    border-left-color: #d7ccc8;
}

.casino-card:nth-child(8) .casino-tag {
    background: linear-gradient(135deg, #607d8b, #90a4ae);
    border-left-color: #cfd8dc;
}

.casino-card:nth-child(9) .casino-tag {
    background: linear-gradient(135deg, #f44336, #ef5350);
    border-left-color: #ffcdd2;
}

.casino-card:nth-child(10) .casino-tag {
    background: linear-gradient(135deg, #4caf50, #81c784);
    border-left-color: #c8e6c9;
}

.casino-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Add subtle pattern to casino cards */
.casino-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0z' fill='none'/%3E%3Cpath d='M2 10a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm8 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm8 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2z' fill='rgba(0,0,0,0.03)'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.casino-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.casino-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.stars {
    color: var(--yellow);
    font-size: 18px;
}

.casino-details {
    margin-bottom: 20px;
    text-align: center;
}

.bonus-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-family: "Jua", sans-serif;
}

.free-spins {
    color: var(--red);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-method {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.payment-method img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    border-radius: 50%;
    background-color: var(--white);
    padding: 5px;
}

.casino-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-button {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-family: "Jua", sans-serif;
    background: linear-gradient(135deg, var(--green), #5fd35f);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.play-button:hover::before {
    left: 100%;
}

.license {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.license-badge {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(0, 83, 165, 0.1);
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 83, 165, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-family: "Jua", sans-serif;
}

.license-badge:hover {
    background-color: rgba(0, 83, 165, 0.15);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .finnish-flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo h2 {
    color: var(--white);
    font-size: 24px;
    font-family: "Jua", sans-serif;
}

.footer-logo span {
    color: var(--sky-blue);
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin-bottom: 20px;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sky-blue);
}

.footer-disclaimer {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 28px;
    }
    
    /* Smaller casino tags on mobile */
    .casino-tag {
        font-size: 11px;
        padding: 6px 15px 6px 12px;
        top: 10px;
    }
    
    .deposit-options {
        flex-direction: column;
        align-items: center;
    }
    
    .casino-header {
        flex-direction: column;
    }
    
    .casino-logo {
        margin-bottom: 15px;
        margin-top: 30px;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    /* Adjust hero section height on mobile */
    .hero {
        padding: 15px 0 30px;
        min-height: 300px;
    }
    
    /* Hide hero content on mobile */
    .hero-content {
        display: yes;
    }
    
    /* Hide hero CTA button on mobile */
    .hero .cta-button {
        display: none;
    }
    
    /* Hide trust elements on mobile */
    .trust-elements {
        display: none;
    }
    
    /* Adjust mountain background size on mobile */
    .hero::before {
        height: 80px;
    }
    
    /* Adjust cloud background size on mobile */
    .hero::after {
        height: 60px;
        top: 30%;
    }
    
    .section-title {
        font-size: 24px;
        margin-top: 20px;
    }
    
    .casino-content {
        padding: 15px;
    }
    
    .bonus-title {
        font-size: 18px;
    }
}
