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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: #333;
    background: #f5f7fa;
}

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

/* Top Alert */
.top-alert {
    background: #0066cc;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 13px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0066cc, #004c99);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.brand { font-size: 16px; font-weight: bold; color: #0066cc; line-height: 1.2; }
.country { font-size: 11px; color: #ff6600; font-weight: 600; }

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

nav a:hover { color: #0066cc; }

.year {
    background: linear-gradient(135deg, #ff6600, #ff8833);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0066cc, #004c99);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stats div {
    display: flex;
    flex-direction: column;
}

.stats strong {
    font-size: 28px;
    font-weight: bold;
}

.stats span {
    font-size: 12px;
    opacity: 0.9;
}

/* Warning */
.warning {
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border-left: 4px solid #ff6600;
    padding: 12px 20px;
    margin: 20px 0;
    border-radius: 6px;
    font-size: 14px;
}

.warning strong { color: #ff6600; }

/* Section */
.section-title {
    text-align: center;
    font-size: 28px;
    color: #0066cc;
    margin: 40px 0 10px;
}

.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Ranking Table */
.table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table thead {
    background: linear-gradient(135deg, #0066cc, #004c99);
    color: white;
}

.ranking-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.ranking-table td {
    padding: 20px 12px;
    border-bottom: 1px solid #e0e0e0;
}

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

.rank {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    background: #e0e0e0;
    color: white;
}

.rank.gold { background: linear-gradient(135deg, #ffd700, #ffa500); }
.rank.silver { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); }
.rank.bronze { background: linear-gradient(135deg, #cd7f32, #b8732c); }

.casino-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.casino-cell img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 5px;
}

.casino-cell strong {
    display: block;
    font-size: 16px;
    color: #0066cc;
}

.casino-cell span {
    font-size: 12px;
    color: #666;
}

.rating {
    font-size: 20px;
    font-weight: bold;
    color: #ffc107;
}

.rating span {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
}

.bonus-cell strong {
    display: block;
    font-size: 18px;
    color: #ff6600;
    font-weight: bold;
}

.bonus-cell span {
    font-size: 11px;
    color: #666;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.badge.fast { background: #d4edda; color: #155724; }
.badge.med { background: #fff3cd; color: #856404; }
.badge.slow { background: #f8d7da; color: #721c24; }
.badge.check { background: #d1ecf1; color: #0c5460; }

.btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,51,51,0.3);
}

/* Guide */
.guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.guide-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: start;
}

.guide-item div {
    display: flex;
    align-items: center;
}

.guide-item span {
    font-size: 40px;
}

.guide-item h3 {
    font-size: 16px;
    color: #0066cc;
    /* margin-bottom: 5px; */
}

.guide-item p {
    font-size: 13px;
    color: #666;
}

/* Contact */
.contact {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 30px auto;
}

.contact h2 {
    margin-bottom: 15px;
    color: #0066cc;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact input,
.contact textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.contact textarea {
    min-height: 100px;
}

.contact button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

/* Help */
.help {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 40px 20px 20px;
}

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

.footer-grid h4 {
    color: #ff6600;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-grid p {
    font-size: 13px;
    opacity: 0.8;
}

.footer-grid a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-grid a:hover {
    color: #ff6600;
}

.regulators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.regulators img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 24px; }
    .stats { flex-direction: row; gap: 20px; }
    .stats strong { font-size: 22px; }
    nav { display: none; }
    
    .ranking-table {
        font-size: 12px;
    }
    
    .ranking-table th,
    .ranking-table td {
        padding: 10px 6px;
    }
    
    .casino-cell img {
        width: 40px;
        height: 40px;
    }
    
    .casino-cell strong {
        font-size: 13px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 11px;
    }
}
/* Additional Pages Styles */

.page-hero {
    background: linear-gradient(135deg, #0066cc, #004c99);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 16px;
    opacity: 0.95;
}

.page-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 15px;
}

.content-section h3 {
    color: #333;
    font-size: 18px;
    margin: 20px 0 10px;
}

.content-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    margin-left: 20px;
    line-height: 1.8;
    color: #555;
}

.content-section li {
    margin-bottom: 8px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.value-card .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.value-card h3 {
    color: #0066cc;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: #666;
}

.criteria-list,
.important-list,
.tools-list,
.protection-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.criteria-list li,
.important-list li,
.tools-list li,
.protection-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.criteria-list li:last-child,
.important-list li:last-child,
.tools-list li:last-child,
.protection-list li:last-child {
    border-bottom: none;
}

.cta-section {
    background: linear-gradient(135deg, #0066cc, #004c99);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: white;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* Responsible Gaming Page */

.warning-large {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.warning-large h2 {
    color: white;
    margin-bottom: 10px;
}

.warning-large p {
    color: white;
    font-size: 16px;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.sign-card {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sign-card span {
    font-size: 30px;
}

.sign-card p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-top: 4px solid #0066cc;
}

.tip-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.tip-card ul {
    list-style: none;
    margin: 0;
}

.tip-card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.tip-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.resource-card {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.resource-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 16px;
}

.resource-card p {
    margin-bottom: 8px;
    font-size: 13px;
}

.emergency-box {
    background: linear-gradient(135deg, #ff3333, #cc0000);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.emergency-box h2 {
    color: white;
    margin-bottom: 15px;
}

.emergency-box p {
    color: white;
}

.emergency-number {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.resources-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.resource-link {
    padding: 10px 20px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.resource-link:hover {
    background: #004c99;
}

/* Contact Page */

.contact-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

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

.btn-submit {
    padding: 15px 40px;
    background: linear-gradient(135deg, #0066cc, #004c99);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    transform: scale(1.02);
}

.contact-info-box,
.faq-box,
.social-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-info-box h3,
.faq-box h3,
.social-box h3 {
    margin-bottom: 15px;
    color: #0066cc;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-item .icon {
    font-size: 30px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.faq-box details {
    margin-bottom: 10px;
}

.faq-box summary {
    cursor: pointer;
    padding: 10px;
    background: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
}

.faq-box details[open] summary {
    color: #0066cc;
}

.faq-box details p {
    padding: 10px;
    font-size: 13px;
}

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

.social-link {
    padding: 10px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.social-link:hover {
    background: #004c99;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.info-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 13px;
    color: #666;
}

.disclaimer-contact {
    background: #fff3cd;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6600;
    margin-top: 30px;
}

.disclaimer-contact h3 {
    color: #ff6600;
    margin-bottom: 15px;
}

.disclaimer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Legal Pages */

.legal-intro {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h3 {
    color: #0066cc;
    font-size: 18px;
    margin-bottom: 10px;
}

.legal-list {
    margin-left: 20px;
    margin-top: 10px;
}

.legal-list li {
    margin-bottom: 8px;
}

/* Responsive for Additional Pages */

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .warning-signs,
    .tips-grid,
    .help-resources {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Apply animations to elements */
.ranking-table tbody tr {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.ranking-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.ranking-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.ranking-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.ranking-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.ranking-table tbody tr:nth-child(5) { animation-delay: 0.5s; }

.guide-item:nth-child(1) {
    animation: slideInLeft 0.6s ease-out;
}

.guide-item:nth-child(2) {
    animation: slideInRight 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.guide-item:nth-child(3) {
    animation: slideInLeft 0.6s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.guide-item:nth-child(4) {
    animation: slideInRight 0.6s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.btn:hover {
    animation: pulse 0.6s ease-in-out;
}

.rank.gold {
    animation: bounce 2s infinite;
}

.hero .stats div {
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
}

.hero .stats div:nth-child(1) { animation-delay: 0.2s; }
.hero .stats div:nth-child(2) { animation-delay: 0.4s; }
.hero .stats div:nth-child(3) { animation-delay: 0.6s; }

/* Hover Effects Enhanced */
.platform-row {
    transition: all 0.3s ease;
}

.platform-row:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,102,204,0.15);
}

.casino-cell img {
    transition: transform 0.3s ease;
}

.casino-cell:hover img {
    transform: scale(1.1);
}

.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

/* Loading Animation for Button */
.btn:active {
    transform: scale(0.95);
}

/* Shine Effect on Hover */
@keyframes shine {
    0% {
        background-position: -200px;
    }
    100% {
        background-position: 200px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn {
    position: relative;
    overflow: hidden;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Additional Info Section Styles */
.info-extra {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    animation: fadeIn 0.8s ease-out;
}

.info-extra h3 {
    color: #0066cc;
    font-size: 22px;
    margin-bottom: 20px;
}

.info-extra ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-extra li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.8;
}

.info-extra li:last-child {
    border-bottom: none;
}

.info-extra strong {
    color: #0066cc;
}

/* Contact Form Inline Styles */
.contact-form-inline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
    animation: fadeIn 0.8s ease-out;
}

.contact-form-inline input,
.contact-form-inline textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form-inline input:focus,
.contact-form-inline textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.contact-form-inline button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #0066cc, #004c99);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-form-inline button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,102,204,0.3);
}

.contact-note {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
    margin-top: 20px;
    font-size: 13px;
}

/* Help Resources Inline */
.help-resources-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.help-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    line-height: 1.6;
}

.help h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.help p {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Enhanced Section Description */
.section-desc {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.8;
}

/* Stagger Animation for Table Rows */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ranking-table tbody tr {
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Responsive Animations */
@media (max-width: 768px) {
    .guide-item:nth-child(1),
    .guide-item:nth-child(2),
    .guide-item:nth-child(3),
    .guide-item:nth-child(4) {
        animation: fadeIn 0.6s ease-out;
    }
    
    .help-resources-inline {
        grid-template-columns: 1fr;
    }
}

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