:root {
            --primary: #4361ee;
            --primary-dark: #3a0ca3;
            --accent: #4cc9f0;
            --success: #06d6a0;
            --text: #1a1a2e;
            --text-light: #64748b;
            --border: #e2e8f0;
            --bg: #f8f9ff;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --hover-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            padding: 30px;
            -webkit-font-smoothing: antialiased;
        }

        /* Sponsored Card */
        .sponsored-card {
            background: white;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            margin-bottom: 30px;
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .sponsored-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }

        .sponsored-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
        }

        /* Header */
        .sponsored-header {
            display: flex;
            align-items: center;
            padding: 20px 25px 15px;
        }

        .sponsored-label {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            margin-right: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(67, 97, 238, 0.2);
        }

        .sponsor-logo {
            font-weight: 700;
            font-size: 18px;
            color: var(--text);
        }

        .sponsor-logo a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .sponsor-logo a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .sponsor-logo a:hover {
            color: var(--primary);
        }

        .sponsor-logo a:hover::after {
            width: 100%;
        }

        /* Content */
        .sponsored-content {
            padding: 0 25px 15px;
        }

        .sponsor-highlight {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--text);
            display: block;
            line-height: 1.4;
        }

        .sponsor-description {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 5px;
        }

        /* Footer */
        .sponsored-footer {
            padding: 15px 25px 20px;
            border-top: 1px solid rgba(226, 232, 240, 0.5);
            text-align: right;
        }

        .visit-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.25);
            position: relative;
            overflow: hidden;
        }

        .visit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.35);
        }

        .visit-button:active {
            transform: translateY(0);
        }

        .visit-button::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .visit-button:hover::after {
            transform: translateX(3px);
        }
        
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    font-family: 'Arial', sans-serif;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #3498db;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-divider {
    width: 80%;
    max-width: 400px;
    height: 1px;
    background-color: rgba(236, 240, 241, 0.2);
    margin: 10px 0;
}

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 20px;
            }
            
            .sponsored-header {
                padding: 15px 20px 10px;
            }
            
            .sponsored-content {
                padding: 0 20px 10px;
            }
            
            .sponsored-footer {
                padding: 12px 20px 15px;
            }
            .footer-links {
                gap: 15px;
            }
            
            .footer-link {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
            
            .footer {
                padding: 25px 0;
            }

            body {
                padding: 15px;
            }
            
            .sponsor-highlight {
                font-size: 16px;
            }
            
            .sponsor-description {
                font-size: 14px;
            }
            
            .visit-button {
                padding: 8px 16px;
                font-size: 13px;
            }
        }