/* 
 * Online Casino Schweiz Paysafe - Stylesheet
 * Size: ~16KB (minified: ~12KB, gzipped: ~3KB)
 * Mobile First approach
 */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f9fa;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #6b2c91 0%, #8b3db8 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(107, 44, 145, 0.2);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.header-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

/* Main Content */
.main-content {
    padding: 20px 0;
    min-height: calc(100vh - 300px);
}

/* Sections */
.intro-section,
.content-section {
    background: white;
    padding: 25px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Title with Special Background */
.hero-title-wrapper {
    position: relative;
    margin: -25px -20px 20px -20px;
    padding: 30px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.hero-title-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-title-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: diagonalMove 20s linear infinite;
    pointer-events: none;
}

.hero-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3),
                 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.hero-top-casinos-btn {
    position: relative;
    z-index: 1;
    display: block;
    width: fit-content;
    margin: 15px auto 0;
    background: rgba(255, 255, 255, 0.95);
    color: #6b2c91;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: bouncePulse 2s ease-in-out infinite;
    text-align: center;
}

.hero-top-casinos-btn:hover {
    background: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    color: #8b3db8;
    animation: none;
}

.hero-top-casinos-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes bouncePulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

@keyframes diagonalMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.intro-section h1 {
    font-size: 1.5rem;
    color: #6b2c91;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.lead {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 1.5rem;
    color: #6b2c91;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #8b3db8;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #6b2c91;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

/* Casinos Section */
.casinos-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.casinos-section h2 {
    font-size: 2rem;
    color: #6b2c91;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #8b3db8;
    font-weight: 600;
}

.casinos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
}

.casino-card {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(107, 44, 145, 0.25);
    border-color: #8b3db8;
}

/* Top 1 Casino Card */
.casino-top-1 {
    position: relative;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 50%, #fff9e6 100%);
    border: 3px solid #FFD700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.2);
    transform: scale(1.02);
    animation: topGlow 3s ease-in-out infinite;
}

.casino-top-1:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5), 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.top-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0d26;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes topGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6), 0 0 0 2px rgba(255, 215, 0, 0.4);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 215, 0, 0.8);
    }
}

.btn-top {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0d26;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.btn-top:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
    transform: scale(1.08);
}

.casino-logo {
    width: 120px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tonyspins-logo {
    background: linear-gradient(135deg, #1a0d26 0%, #2d1b3d 50%, #3d254d 100%);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.casino-info h3 {
    font-size: 1.2rem;
    color: #6b2c91;
    margin-bottom: 12px;
    font-weight: 600;
}

.casino-bonus {
    font-size: 1.1rem;
    color: #8b3db8;
    font-weight: 600;
    margin-bottom: 10px;
}

.casino-payout {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-casino,
.top-card__btn.referral-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b3db8 0%, #6b2c91 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
}

.btn-casino:hover,
.top-card__btn.referral-btn:hover {
    background: linear-gradient(135deg, #6b2c91 0%, #5a2478 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(139, 61, 184, 0.4);
}

.btn-casino:focus,
.top-card__btn.referral-btn:focus {
    outline: 2px solid #8b3db8;
    outline-offset: 2px;
}

/* Comparison Table */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, #6b2c91 0%, #8b3db8 100%);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table tbody tr:hover {
    background-color: #f5f5f5;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-item {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #8b3db8;
}

.faq-item h3 {
    color: #6b2c91;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d1b3d 0%, #3d254d 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    border-bottom: 2px solid #8b3db8;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-link:hover {
    color: #8b3db8;
}

.footer-licenses {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-licenses .footer-title {
    text-align: center;
    margin-bottom: 25px;
}

.license-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.license-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.license-logo:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Mobile First - Tablet and Desktop */
@media (min-width: 481px) {
    .container {
        padding: 0 20px;
    }

    .header-logo {
        height: 50px;
    }

    .main-content {
        padding: 30px 0;
    }

    .intro-section,
    .content-section {
        padding: 30px 25px;
        margin-bottom: 25px;
    }

    .hero-title-wrapper {
        margin: -30px -25px 25px -25px;
        padding: 40px 25px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }

    .intro-section h1 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
        padding-bottom: 10px;
        border-bottom: 3px solid #8b3db8;
    }

    .casinos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .casino-card {
        padding: 22px;
    }

    .casino-logo {
        width: 140px;
        height: 70px;
        margin-bottom: 18px;
    }

    .casino-info h3 {
        font-size: 1.3rem;
    }

    .btn-casino,
    .top-card__btn.referral-btn {
        padding: 11px 25px;
        font-size: 0.95rem;
    }

    .hero-top-casinos-btn {
        display: none;
    }
}

@media (min-width: 769px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    .header-logo {
        height: 70px;
    }

    .main-content {
        padding: 40px 0;
    }

    .intro-section,
    .content-section {
        padding: 40px;
        margin-bottom: 30px;
    }

    .hero-title-wrapper {
        margin: -40px -40px 30px -40px;
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .hero-top-casinos-btn {
        display: none;
    }

    .intro-section h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .lead {
        font-size: 1.2rem;
    }

    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .casinos-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        margin: 30px 0;
    }

    .casino-card {
        padding: 25px;
    }

    .casino-logo {
        width: 150px;
        height: 80px;
        margin-bottom: 20px;
    }

    .casino-info h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .btn-casino,
    .top-card__btn.referral-btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: auto;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .license-logo {
        height: 60px;
    }
}

/* Legacy mobile styles - keeping for compatibility */
@media (max-width: 768px) {
    .header-logo {
        height: 45px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .hero-title-wrapper {
        margin: -25px -20px 25px -20px;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .intro-section h1 {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .casinos-grid {
        grid-template-columns: 1fr;
    }

    .casino-top-1 {
        transform: scale(1);
    }

    .casino-top-1:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .top-badge {
        top: -10px;
        right: -10px;
        font-size: 0.8rem;
        padding: 7px 14px;
    }

    .intro-section,
    .content-section,
    .casinos-section {
        padding: 25px 20px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .license-logos {
        gap: 15px;
    }

    .license-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-logo {
        height: 40px;
    }

    .hero-title-wrapper {
        margin: -25px -15px 20px -15px;
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .intro-section h1 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .casino-card {
        padding: 20px;
    }

    .casino-top-1 {
        transform: scale(1);
    }

    .casino-top-1:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .top-badge {
        top: -10px;
        right: -10px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .btn-casino {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

