 :root {
            --hot-pink: #FF1493;
            --deep-red: #B22222;
            --gold: #FFD700;
            --dark: #1A1A1A;
            --light: #FFF5EE;
            --neon-effect: 0 0 10px var(--hot-pink), 0 0 20px var(--gold);
        }
        
        body {
            margin: 0;
            font-family: 'Arial Black', Gadget, sans-serif;
            background: #000;
            min-height: 100vh;
            color: white;
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--hot-pink);
            position: fixed;
            width: 90%;
            z-index: 1000;
            box-shadow: var(--neon-effect);
            animation: pulse 3s infinite alternate;
        }
        
        .logo {
            display: flex;
            align-items: center;
            filter: drop-shadow(0 0 5px var(--hot-pink));
        }
        
        .logo img {
            height: 80px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            transition: all 0.3s;
        }
        
        .logo:hover img {
            transform: rotate(15deg);
            filter: hue-rotate(45deg);
        }
        
        .logo-text {
            font-family: 'Brush Script MT', cursive;
            color: var(--gold);
            font-size: 32px;
            margin-left: 15px;
            text-shadow: 2px 2px 4px var(--hot-pink);
            letter-spacing: 2px;
        }
        
        /* main */
        .main-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .main-nav li {
            margin: 0 5px;
            position: relative;
        }
        
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 12px 20px;
            border-radius: 30px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            background: rgba(178, 34, 34, 0.5);
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
        }
        
        .main-nav a:hover {
            background: var(--hot-pink);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--hot-pink);
        }
        
        .main-nav a i {
            margin-right: 10px;
            font-size: 20px;
            color: var(--gold);
        }
        
        /* lang menu */
        .language-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .language-dropbtn {
            color: var(--gold);
            text-decoration: none;
            font-weight: bold;
            padding: 12px 20px;
            border-radius: 30px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--hot-pink);
            font-size: 14px;
            transition: all 0.3s;
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .language-dropbtn i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        .language-dropbtn:hover {
            background: var(--hot-pink);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--hot-pink);
        }
        
        .language-dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background-color: rgba(26, 26, 26, 0.9);
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
            z-index: 1;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--hot-pink);
        }
        
        .language-dropdown-content a {
            color: var(--gold);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: all 0.3s;
            text-align: left;
            font-size: 14px;
        }
        
        .language-dropdown-content a:hover {
            background-color: var(--hot-pink);
            color: white;
        }
        
        .language-dropdown:hover .language-dropdown-content {
            display: block;
        }
        
        /* mob menu */
        .mobile-menu-btn {
            display: none;
            background: rgba(178, 34, 34, 0.5);
            border: none;
            color: white;
            padding: 12px 15px;
            border-radius: 30px;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .mobile-menu-btn:hover {
            background: var(--hot-pink);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--hot-pink);
        }
        
        .mobile-nav {
            display: none;
            width: 100%;
            background: rgba(26, 26, 26, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 999;
            padding: 15px 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav li {
            margin-bottom: 10px;
        }
        
        .mobile-nav a {
            display: block;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 5px;
        }
        
        .mobile-nav a:hover {
            background: var(--hot-pink);
        }
        
        .mobile-nav a i {
            margin-right: 10px;
            color: var(--gold);
        }
        
        .mobile-language-dropdown {
            margin-top: 15px;
        }
        
        .mobile-language-btn {
            display: block;
            width: 100%;
            padding: 12px 20px;
            background: rgba(178, 34, 34, 0.3);
            color: var(--gold);
            border: none;
            border-radius: 5px;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .mobile-language-btn:hover {
            background: var(--hot-pink);
            color: white;
        }
        
        .mobile-language-btn i {
            margin-right: 10px;
        }
        
        .mobile-language-content {
            display: none;
            padding-left: 15px;
        }
        
        .mobile-language-content a {
            padding: 10px 15px;
            color: var(--gold);
            text-decoration: none;
            display: block;
        }
        
        .mobile-language-content a:hover {
            color: white;
            background: rgba(255, 20, 147, 0.3);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 15px var(--hot-pink); }
            50% { box-shadow: 0 0 25px var(--gold); }
            100% { box-shadow: 0 0 15px var(--hot-pink); }
        }
		

.mobile-language-content {
    max-height: 250px; 
    overflow-y: auto;  
    margin-top: 10px;
    padding-right: 5px; 
    -webkit-overflow-scrolling: touch; 
}


.mobile-language-content::-webkit-scrollbar {
    width: 5px;
}

.mobile-language-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.mobile-language-content::-webkit-scrollbar-thumb {
    background: var(--hot-pink);
    border-radius: 3px;
}

.mobile-language-content::-webkit-scrollbar-thumb:hover {
    background: #ff3ca6;
}
		
		
        
        /* effects */
        .header::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--hot-pink), var(--gold), var(--hot-pink));
            background-size: 200% auto;
            animation: shine 3s linear infinite;
        }
        
        @keyframes shine {
            to { background-position: 200% center; }
        }
        
        /* main cont */
        .main-content {
            padding-top: 120px;
            padding-bottom: 60px;
            background-color: rgba(0, 0, 0, 0.7);
            min-height: calc(100vh - 180px);
        }
        
        /* gal img */
        .gallery-section-frausexe {
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .gallery-section-frausexe h2 {
            color: var(--gold);
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
            position: relative;
            padding-bottom: 10px;
            text-shadow: 0 0 10px var(--hot-pink);
        }
        
        .gallery-section-frausexe h2:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--hot-pink);
            box-shadow: 0 0 10px var(--gold);
        }
        
        .gallery-grid-frausexe {
           column-count: 4;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .gallery-item-frausexe {
            text-align: center;
            transition: all 0.3s;
            background: rgba(26, 26, 26, 0.5);
            border-radius: 10px;
            padding: 10px;
            overflow: hidden;
        }
        
        .gallery-item-frausexe:hover {
            transform: translateY(-5px);
            background: rgba(255, 20, 147, 0.2);
            box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
        }
        
        .gallery-item-frausexe img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 10px;
            border: 2px solid var(--gold);
            transition: all 0.3s;
        }
        
        .gallery-item-frausexe:hover img {
            border-color: var(--hot-pink);
            box-shadow: 0 5px 15px var(--hot-pink);
        }
        
        .gallery-caption {
            font-size: 16px;
            color: var(--gold);
            margin-bottom: 5px;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            color: var(--hot-pink);
        }
        
        /* buttons styles */
        .links-section-frausexe {
            padding: 30px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .links-section-frausexe h2 {
            color: var(--gold);
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
            text-shadow: 0 0 10px var(--hot-pink);
        }
        
        .links-grid-frausexe {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .links-grid-frausexe a {
            display: inline-block;
            padding: 10px 20px;
            background: rgba(178, 34, 34, 0.5);
            border-radius: 30px;
            text-decoration: none;
            color: white;
            font-weight: bold;
            transition: all 0.3s;
            border: 1px solid var(--gold);
            text-align: center;
            min-width: 100px;
        }
        
        .links-grid-frausexe a:hover {
            background: var(--hot-pink);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--hot-pink);
            border-color: var(--hot-pink);
        }
        
        /* footer */
        .footer {
            background: linear-gradient(to right, #1A1A1A, #2A0A0A);
            padding: 30px 5%;
            text-align: center;
            border-top: 2px solid var(--hot-pink);
            box-shadow: 0 -5px 20px rgba(255, 20, 147, 0.3);
            position: relative;
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--hot-pink), var(--gold), var(--hot-pink));
            background-size: 200% auto;
            animation: shine 3s linear infinite;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 25px 0;
        }
        
        .footer-links a {
            color: var(--gold);
            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: var(--hot-pink);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 20, 147, 0.5);
        }
        
        .footer-links a i {
            font-size: 16px;
        }
        
        .copyright {
            color: var(--gold);
            font-size: 12px;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .copyright-text {
            text-shadow: 0 0 5px var(--hot-pink);
        }
        
        .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: var(--hot-pink);
        }
        
        /* mobile */
        @media (max-width: 992px) {
            .header {
                flex-wrap: wrap;
                padding: 15px;
            }
            
            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            
            .language-dropdown {
                margin-left: auto;
                margin-right: 15px;
            }
            
            .main-content {
                padding-top: 180px;
            }
            
            .gallery-grid-frausexe {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            
            .language-dropdown {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .mobile-language-content.active {
                display: block;
            }
            
            .gallery-grid-frausexe {
				 column-count: 2;
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .links-grid-frausexe {
                gap: 10px;
            }
            
            .links-grid-frausexe a {
                padding: 8px 15px;
                font-size: 14px;
                min-width: 80px;
            }
            
            .footer-links {
                gap: 10px;
            }
            
            .footer-links a {
                padding: 6px 12px;
                font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-grid-frausexe {
				 column-count: 1;
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .links-grid-frausexe a {
                padding: 6px 12px;
                font-size: 12px;
                min-width: 70px;
            }
            
            .logo img {
                height: 60px;
            }
            
            .logo-text {
                font-size: 24px;
            }
        }