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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f0fdf4 100%);
    background-attachment: fixed;
}

p {
    color: #000000;
    line-height: 1.7;
}

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

/* General heading styles */
h1, h2, h3, h4, h5, h6 {
    color: #0369a1;
}

/* List styles */
ul, ol {
    color: #000000;
    line-height: 1.7;
}

li {
    color: #000000;
}

/* Header */
header {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%);
    border-bottom: 3px solid #22c55e;
    color: white;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2), 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.logo-vanilla {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: #22c55e;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(34, 197, 94, 0.5), 0 0 20px rgba(34, 197, 94, 0.3);
}

.logo-vapes {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%);
    border-bottom: 4px solid #22c55e;
    color: white;
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 0 40px rgba(34, 197, 94, 0.5);
    filter: drop-shadow(0 2px 10px rgba(34, 197, 94, 0.3));
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.last-updated {
    display: inline-block;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    border: 2px solid #16a34a;
    border-radius: 25px;
    padding: 12px 28px;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.last-updated:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.6), 0 3px 12px rgba(0, 0, 0, 0.3);
    border-color: #22c55e;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

/* Main Content */
main {
    padding: 3rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 1.85rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

/* Casino Cards */
.casinos-section {
    margin-bottom: 4rem;
}

.casinos-section h2 {
    font-size: 1.85rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 1rem;
}

.casinos-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.casino-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #e0e7ef;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3), 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #22c55e;
}

.casino-card.featured {
    border: 3px solid #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4), 0 3px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.casino-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.casino-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #16a34a;
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.4);
    z-index: 10;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.casino-logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0ea5e9;
    flex-shrink: 0;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.casino-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.casino-logo {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.casino-info h3 {
    font-size: 1.4rem;
    color: #0369a1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rating {
    color: #22c55e;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(34, 197, 94, 0.3);
}

.rating span {
    color: #555;
    font-size: 0.95rem;
    margin-left: 0.5rem;
    font-weight: 600;
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 3px solid #22c55e;
    color: #2c2c2c;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.casino-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary {
    background: #0ea5e9;
    color: #ffffff;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.btn-secondary:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.8);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0369a1;
}

.benefit-card p {
    color: #000000;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #0369a1;
}

.step p {
    color: #000000;
}

/* FAQ Section */
.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #0369a1;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #000000;
}

/* Disclaimer */
.disclaimer {
    background: #dbeafe;
    border-left: 4px solid #0ea5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.disclaimer h3 {
    color: #0369a1;
    margin-bottom: 0.75rem;
}

.disclaimer p {
    color: #000000;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-section a {
    color: #e0f2fe;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

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

/* Mobile Follow Bar */
.mobile-follow-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-top: 2px solid rgba(34, 197, 94, 0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-bar-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    max-width: 100%;
}

.mobile-bar-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 4px;
    flex-shrink: 0;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.mobile-bar-info {
    flex: 1;
    min-width: 0;
}

.mobile-bar-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-bar-offer {
    font-size: 0.75rem;
    color: #22c55e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-bar-btn {
    background: #22c55e;
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.mobile-bar-btn:active {
    transform: scale(0.95);
    background: #16a34a;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .casino-header {
        flex-direction: column;
        text-align: center;
    }

    .casino-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Show mobile follow bar only on mobile */
    .mobile-follow-bar {
        display: block;
    }

    /* Add padding to body to prevent content from being hidden behind the bar */
    body {
        padding-bottom: 80px;
    }
}
