/* Sweet Bonanza Pink Theme Styles */
:root {
    --primary-pink: #ff69b4;
    --light-pink: #ffb6c1;
    --soft-pink: #ffc0cb;
    --accent-pink: #ff1493;
    --dark-pink: #c71585;
    --background-dark: #1a0d1a;
    --background-gradient: linear-gradient(135deg, #2d1b2d 0%, #1a0d1a 100%);
    --card-bg: rgba(255, 182, 193, 0.1);
    --border-pink: rgba(255, 105, 180, 0.3);
    --text-light: #ffffff;
    --text-pink: #ffb6c1;
    --shadow-pink: rgba(255, 105, 180, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background-dark);
    background-image: var(--background-gradient);
    min-height: 100vh;
    color: var(--text-light);
    overflow-x: hidden;
}

/* Floating particles animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-pink);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Landing Page Styles */
.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.floating-logo {
    animation: floatLogo 3s ease-in-out infinite;
    margin-bottom: 3rem;
    filter: drop-shadow(0 0 20px var(--shadow-pink));
}

.floating-logo img {
    width: 18rem;
    height: 10rem;
    object-fit: fit;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.enter-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px var(--shadow-pink);
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
}

/* Invite Code Page Styles */
.invite-page {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container img {
    width: 30rem;
    height: 18rem;
    filter: drop-shadow(0 0 15px var(--shadow-pink));
}

.invite-heading {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--shadow-pink);
}

.invite-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-pink);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    min-width: 350px;
}

.invite-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-pink);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.invite-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 20px var(--shadow-pink);
    background: rgba(255, 255, 255, 0.15);
}

.invite-input::placeholder {
    color: var(--text-pink);
    opacity: 0.7;
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-pink);
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
}

/* Video List Page Styles */
.video-page {
    display: none;
    padding: 2rem;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.video-page.active {
    display: block;
}

.video-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-pink);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-section {
    align-items: center;
    text-align: center;
    width: 100%;
}

.profile-block {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.profile-block .logo-container {
    margin-bottom: 0.5rem;
}

.profile-block .logo-container img {
    width: 200px;
    height: 120px;
    filter: drop-shadow(0 0 15px var(--shadow-pink));
    transition: all 0.3s ease;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 20px var(--shadow-pink));
    border: 3px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px var(--shadow-pink));
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    margin: auto;
    margin-top: 10px;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-pink);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px var(--shadow-pink);
    border-color: var(--primary-pink);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: #fd1d1d;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.social-link.onlyfans:hover {
    background: #00aeef;
    border-color: #00aeef;
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid var(--primary-pink);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 280px;
}

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

.progress-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-pink);
}

.progress-stats {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-pink);
    background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-pink), var(--light-pink), var(--accent-pink));
    border-radius: 6px;
    width: 0%;
    transition: width 0.8s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-goal {
    text-align: center;
}

.goal-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-pink);
    opacity: 0.8;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-pink);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-pink);
    border-color: var(--primary-pink);
}

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

.video-card:hover::before {
    left: 100%;
}

.video-thumbnail {
    width: 100%;
    height: 150px;

/* Loader overlay styles */
.processing-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(6px) saturate(120%);
    background: rgba(10,6,10,0.55);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processing-card {
    width: 420px;
    max-width: 90%;
    background: linear-gradient(135deg, rgba(255,105,180,0.12), rgba(255,20,147,0.08));
    border: 1px solid rgba(255,105,180,0.18);
    border-radius: 18px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.processing-spinner {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    background: conic-gradient(var(--primary-pink), var(--accent-pink));
    animation: spin 1.2s linear infinite;
    box-shadow: 0 8px 30px rgba(255,20,147,0.2);
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.processing-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.2px;
}
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.video-card:hover .thumbnail-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-pink);
    z-index: 2;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.lock-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-pink);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 3;
    border: 2px solid var(--primary-pink);
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-pink);
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Payment Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: var(--background-dark);
    background-image: var(--background-gradient);
    border: 2px solid var(--border-pink);
    border-radius: 25px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-btn:hover {
    opacity: 1;
}

.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.sol-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.payment-instruction {
    color: var(--text-pink);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #333;
    border: 3px solid var(--primary-pink);
}
.qr-code-img{
    max-width:10rem;
    max-height:10rem;
}

.wallet-address-section {
    margin-bottom: 2rem;
}

.wallet-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.wallet-address-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-pink);
    border-radius: 12px;
    padding: 12px 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.wallet-address-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 15px var(--shadow-pink);
    background: rgba(255, 255, 255, 0.15);
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 70px;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px var(--shadow-pink);
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #4ade80, #16a34a);
    transform: scale(0.95);
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-label {
    color: var(--text-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-pink);
    border-radius: 12px;
    padding: 12px 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 15px var(--shadow-pink);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
    color: var(--text-pink);
    opacity: 0.6;
}

.submit-payment-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.submit-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-pink);
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
}

/* Responsive Design */
@media (max-width: 768px) {
    .invite-heading {
        font-size: 2rem;
    }
    
    .invite-form {
        min-width: auto;
        width: 100%;
        padding: 1.5rem;
    }
    
    .video-page {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }
    
    .video-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        order: 1;
    }
    
    .profile-section {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .profile-block .logo-container img {
        width: 120px;
        height: 70px;
    }
    
    .profile-image img {
        width: 100px;
        height: 100px;
    }
    .profile-block {
        display: block;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .progress-container {
        padding: 0.75rem 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        min-width: auto;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .progress-label {
        font-size: 1rem;
    }
    
    .progress-stats {
        font-size: 0.9rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        order: 2;
    }
    
    .video-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .video-thumbnail {
        height: 140px;
    }
    
    .thumbnail-img {
        border-radius: 12px;
    }
    
    .thumbnail-overlay {
        border-radius: 12px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .wallet-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .copy-btn {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 640px) {
    .video-page {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }
    
    .video-header {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.75rem;
        order: 2;
        width: 100%;
    }
    
    .video-card {
        max-width: 100%;
        padding: 1.25rem;
        width: 100%;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .thumbnail-img {
        border-radius: 12px;
    }
    
    .thumbnail-overlay {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .floating-logo img {
        width: 120px;
        height: 120px;
    }
    
    .invite-heading {
        font-size: 1.8rem;
    }
    
    .video-page {
        padding: 1rem;
    }
    
    .video-grid {
        gap: 0.75rem;
        padding: 0;
    }
    
    .video-card {
        padding: 0.75rem;
        margin: 0;
    }
    
    .video-thumbnail {
        height: 120px;
        border-radius: 10px;
    }
    
    .thumbnail-img {
        border-radius: 10px;
    }
    
    .thumbnail-overlay {
        border-radius: 10px;
    }
    
    .video-info h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .play-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lock-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .popup-content {
        padding: 1rem;
    }
}

/* Hide all pages initially */
.page {
    display: none;
}

.page.active {
    display: flex;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Simple Pagination Styles */
.simple-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    padding: 1rem;
    width: 100%;
    max-width: 600px;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-pink);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
}

.page-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    border-color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--card-bg);
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-pink);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.page-number:hover:not(.active) {
    background: rgba(255, 105, 180, 0.2);
    border-color: var(--primary-pink);
}

.page-number.active {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    border-color: var(--primary-pink);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

/* Responsive pagination */
@media (max-width: 768px) {
    .simple-pagination {
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .page-btn,
    .page-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .simple-pagination {
        gap: 0.5rem;
        margin: 1rem 0;
        padding: 0.5rem;
    }
    
    .page-btn,
    .page-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}
