        :root {
            --primary-color: #cc0066;
            --secondary-color: #99004c;
            --accent-color: #ff0080;
            --dark-color: #1a000d;
            --light-color: #fff5f9;
            --text-color: #fff;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #330019 0%, #1a000d 100%);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 12px;
        }
        
        header {
            text-align: center;
            padding: 15px 0;
            margin-bottom: 15px;
            position: relative;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
        }
        
        header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: var(--accent-color);
        }
        
        h1 {
            font-size: 1.8rem;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            color: #ff66b2;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .tagline {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 10px;
            color: #ffb3d9;
            font-style: italic;
        }
        
        .gallery-info {
            text-align: center;
            margin-bottom: 15px;
            padding: 10px;
            background: rgba(204, 0, 102, 0.2);
            border-radius: 8px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 0, 128, 0.3);
        }
        
        .gallery-stats {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
            flex-wrap: wrap;
        }
        
        .stat {
            background: rgba(255, 0, 128, 0.4);
            padding: 5px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            border: 1px solid rgba(255, 0, 128, 0.2);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            cursor: pointer;
            transition: var(--transition);
            aspect-ratio: 2/3;
            border: 2px solid rgba(255, 0, 128, 0.3);
        }
        
        .gallery-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 0, 128, 0.4);
            border-color: var(--accent-color);
            z-index: 2;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        
        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 12px;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .overlay {
            opacity: 1;
        }
        
        .image-title {
            font-weight: bold;
            margin-bottom: 4px;
            font-size: 0.85rem;
            color: #ff66b2;
        }
        
        .image-desc {
            font-size: 0.75rem;
            opacity: 0.9;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .pagination a {
            display: inline-block;
            padding: 8px 12px;
            background: rgba(255, 0, 128, 0.3);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 5px;
            transition: var(--transition);
            font-size: 0.85rem;
            border: 1px solid rgba(255, 0, 128, 0.2);
        }
        
        .pagination a:hover, .pagination a.active {
            background: var(--accent-color);
            transform: scale(1.05);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            z-index: 1000;
            overflow: hidden;
        }
        
        .modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            margin: 0 auto;
        }
        
        .modal-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: white;
            background: rgba(204, 0, 102, 0.7);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;
            border: 1px solid rgba(255, 0, 128, 0.5);
        }
        
        .navigation {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
        }
        
        .nav-btn {
            background: rgba(204, 0, 102, 0.7);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 0, 128, 0.5);
        }
        
        .image-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.15);
            padding: 15px;
            color: white;
            font-size: 0.9rem;
            border-top: 2px solid var(--accent-color);
        }
        
        .external-link-btn {
            display: block;
            margin-top: 12px;
            padding: 12px 15px;
            background: linear-gradient(to right, var(--accent-color), var(--primary-color));
            color: white;
            text-decoration: none;
            border-radius: 5px;
            text-align: center;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            transition: var(--transition);
        }
        
        .external-link-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 0, 128, 0.5);
        }
        
        footer {
            text-align: center;
            padding: 15px 0;
            margin-top: 25px;
            border-top: 1px solid rgba(255, 0, 128, 0.2);
            font-size: 0.75rem;
            opacity: 0.7;
        }
        
        .social-share {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 12px 0;
            flex-wrap: wrap;
        }
        
        .social-btn {
            display: inline-block;
            padding: 8px 12px;
            background: rgba(255, 0, 128, 0.3);
            border-radius: 5px;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.8rem;
            border: 1px solid rgba(255, 0, 128, 0.2);
        }
        
        .social-btn:hover {
            background: var(--accent-color);
        }
        
        /* Mobile-specific styles */
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 10px;
            }
            
            .gallery-info {
                font-size: 0.8rem;
                padding: 8px;
            }
            
            .stat {
                font-size: 0.7rem;
                padding: 4px 8px;
            }
            
            .pagination a {
                padding: 6px 10px;
                font-size: 0.8rem;
            }
            
            .social-btn {
                padding: 6px 10px;
                font-size: 0.75rem;
            }
            
            .close-modal, .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .image-info {
                padding: 10px;
                font-size: 0.8rem;
            }
            
            .external-link-btn {
                padding: 10px;
                font-size: 0.85rem;
            }
        }
        
        /* Premium badge */
        .premium-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: linear-gradient(45deg, #ff9900, #ffcc00);
            color: #000;
            font-size: 0.7rem;
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: bold;
            z-index: 2;
        }
        
        /* Loading animation */
        .loading {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Adult warning */
        .adult-warning {
            text-align: center;
            background: rgba(204, 0, 0, 0.2);
            padding: 8px;
            border-radius: 5px;
            margin: 10px 0;
            font-size: 0.75rem;
            border: 1px solid rgba(255, 0, 0, 0.3);
        }
