       :root {
            --hot-pink: #FF1493;
            --deep-red: #B22222;
            --gold: #FFD700;
            --dark: #1A1A1A;
            --light: #FFF5EE;
        }
        
        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light);
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: linear-gradient(135deg, var(--dark), #2A0A0A);
            box-shadow: 0 4px 20px rgba(178, 34, 34, 0.3);
            position: relative;
            z-index: 100;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 70px;
            transition: transform 0.3s;
        }
        
        .logo:hover img {
            transform: scale(1.05);
        }
        
        .logo-text a {
            font-family: 'Impact', fantasy;
            color: var(--gold);
            font-size: 28px;
            margin-left: 15px;
            text-shadow: 1px 1px 3px var(--hot-pink);
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .main-nav li {
            margin: 0 10px;
            position: relative;
        }
        
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 30px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .main-nav a:hover {
            background: var(--hot-pink);
            color: white;
            box-shadow: 0 0 15px var(--hot-pink);
        }
        
        .main-nav a i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        .language-switcher {
            position: relative;
        }
        
        .language-switcher select {
            background: var(--dark);
            color: white;
            border: 2px solid var(--gold);
            border-radius: 20px;
            padding: 8px 15px 8px 35px;
            font-weight: bold;
            appearance: none;
            cursor: pointer;
            background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
            background-repeat: no-repeat;
            background-position: right 10px center;
            transition: all 0.3s;
        }
        
        .language-switcher select:hover {
            border-color: var(--hot-pink);
            box-shadow: 0 0 10px var(--hot-pink);
        }
        
        .language-switcher::before {
            content: "🌎";
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
        }
        

        @keyframes pulse {
            0% { box-shadow: 0 0 10px var(--hot-pink); }
            50% { box-shadow: 0 0 20px var(--hot-pink); }
            100% { box-shadow: 0 0 10px var(--hot-pink); }
        }
        
        .header:hover {
            animation: pulse 2s infinite;
        }
        

        @media (max-width: 992px) {
            .header {
                flex-direction: column;
                padding: 15px;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .main-nav {
                margin: 15px 0;
            }
            
            .main-nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .main-nav li {
                margin: 5px;
            }
            
            .language-switcher {
                margin-top: 15px;
            }
        }
		
		 .footer {
        background: linear-gradient(to right, #1A1A1A, #2A0A0A);
        padding: 30px 5%;
        text-align: center;
        border-top: 2px solid #FF1493;
        box-shadow: 0 -5px 20px rgba(255, 20, 147, 0.3);
        position: relative;
        z-index: 50;
    }
    
    .footer::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #FF1493, #FFD700, #FF1493);
        background-size: 200% auto;
        animation: shine 3s linear infinite;
    }
    
    .footer-banners {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    
    .footer-logo-img {
        height: 50px;
        border-radius: 50%;
        border: 2px solid #FFD700;
        padding: 5px;
        background: rgba(0, 0, 0, 0.7);
        transition: all 0.3s;
    }
    
    .footer-logo-img:hover {
        transform: rotate(10deg) scale(1.1);
        box-shadow: 0 0 15px #FF1493;
    }
    
    .partner-banner-img {
        height: 45px;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .partner-banner-img:hover {
        transform: scale(1.05);
        box-shadow: 0 0 10px #FFD700;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin: 25px 0;
    }
    
    .footer-links a {
        color: #FFD700;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        transition: all 0.3s;
        padding: 8px 15px;
        border-radius: 20px;
        background: rgba(178, 34, 34, 0.3);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .footer-links a:hover {
        color: white;
        background: #FF1493;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 20, 147, 0.5);
    }
    
    .footer-links a i {
        font-size: 16px;
    }
    
    .copyright {
        color: #FFD700;
        font-size: 12px;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .copyright-text {
        text-shadow: 0 0 5px #FF1493;
    }
    
    .age-warning {
        background: rgba(178, 34, 34, 0.5);
        padding: 5px 15px;
        border-radius: 15px;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    
    .age-warning i {
        color: #FF1493;
    }
    
    @media (max-width: 768px) {
        .footer-banners {
            gap: 20px;
        }
        
        .footer-links {
            gap: 10px;
        }
        
        .footer-links a {
            padding: 6px 12px;
            font-size: 12px;
        }
    }
		



        
  .gallery-section-fphgirls {
    padding: 10px 15px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light);
}

.gallery-section-fphgirls h1,
.gallery-section-fphgirls h2 {
    color: var(--deep-red);
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(178, 34, 34, 0.3);
}

.gallery-section-fphgirls h1:after,
.gallery-section-fphgirls h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    box-shadow: 0 0 5px var(--hot-pink);
}

.gallery-grid-fphgirls {
    column-count: 5;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.gallery-item-fphgirls {
    text-align: center;
    transition: transform 0.3s;
    background: rgba(26, 26, 26, 0.05);
    border-radius: 5px;
    padding: 5px;
	display: flex;
    flex-direction: column;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 1em;
}

.gallery-item-fphgirls:hover {
    transform: translateY(-5px);
    background: rgba(255, 20, 147, 0.1);
}

.gallery-item-fphgirls a {
    text-decoration: none;
    color: var(--dark);
    display: block;
}

.gallery-item-fphgirls img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1px;
    border: 1px solid var(--gold);
    box-shadow: 0 2px 8px rgba(178, 34, 34, 0.2);
    transition: all 0.3s;
}

.gallery-item-fphgirls:hover img {
    box-shadow: 0 5px 15px var(--hot-pink);
    border-color: var(--hot-pink);
}

.gallery-caption {
    font-size: 15px;
    color: var(--deep-red);
    padding: 0 5px;
    margin-bottom: 5px;
    font-weight: 600;
    transition: color 0.3s;
}

.gallery-item-fphgirls:hover .gallery-caption {
    color: var(--hot-pink);
}

.links-section {
    padding: 10px 15px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.1), rgba(255, 20, 147, 0.1));
    margin-top: 30px;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.links-section h1,
.links-section h2 {
    color: var(--deep-red);
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(178, 34, 34, 0.3);
}

.links-grid-fphgirls {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 20px auto 0;
}

.links-grid-fphgirls a {
    display: block;
    padding: 12px;
    background: var(--light);
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: var(--deep-red);
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--gold);
    box-shadow: 0 2px 5px rgba(178, 34, 34, 0.1);
}

.links-grid-fphgirls a:hover {
    background: var(--deep-red);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--hot-pink);
    border-color: var(--hot-pink);
}

@media (max-width: 768px) {
    .gallery-grid-fphgirls {
        column-count: 2;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .links-grid-fphgirls {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .footer-banners {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-section-fphgirls h1, 
    .links-section h1, 
    .gallery-section-fphgirls h2, 
    .links-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 450px) {
    .gallery-grid-fphgirls {
        column-count: 1;
        gap: 10px;
    }
}
 		