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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.welcome-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #fff;
    padding: 40px 60px;
    border-radius: 10px;
    z-index: 10000;
    text-align: center;
    animation: popIn 0.5s ease, popOut 0.5s ease 2s forwards;
}

@keyframes popIn {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes popOut {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0) rotate(180deg);
        opacity: 0;
        visibility: hidden;
    }
}

.welcome-popup h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.admin-notification {
    background: linear-gradient(135deg, #1a1a1a, #000);
    border-bottom: 2px solid #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 1s ease 2.5s both;
}

@keyframes slideDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

.admin-notification-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-badge {
    background: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255,255,255,0);
    }
}

.admin-message {
    flex: 1;
    font-size: 1rem;
    letter-spacing: 1px;
}

.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #fff;
    border-radius: 15px;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
    animation: slideInRight 1s ease 3s both;
    transition: all 0.3s ease;
}

@keyframes slideInRight {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.music-player.minimized {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
}

.music-player.minimized .music-content {
    display: none;
}

.music-toggle-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.music-toggle-btn:hover {
    transform: rotate(90deg) scale(1.1);
}

.music-player.minimized .music-toggle-btn {
    position: static;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-size: 1.5rem;
}

.music-content {
    padding: 20px;
    min-width: 280px;
}

.music-player-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.music-icon {
    font-size: 1.5rem;
    animation: musicBounce 1s ease infinite;
}

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

.music-title {
    font-weight: 700;
    letter-spacing: 2px;
}

.music-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.play-btn.playing {
    animation: playPulse 1s ease infinite;
}

@keyframes playPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255,255,255,1);
    }
}

.volume-control {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    flex: 1;
    height: 5px;
    -webkit-appearance: none;
    background: #333;
    outline: none;
    border-radius: 5px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
}

.upload-music {
    margin-top: 10px;
    padding: 8px 15px;
    background: #333;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.upload-music:hover {
    background: #fff;
    color: #000;
}

.upload-music input {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.profile-header {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #0f0f0f;
    border: 1px solid #333;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s infinite;
}

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

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.avatar-border {
    width: 150px;
    height: 150px;
    border: 3px solid #fff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
    transition: all 0.5s ease;
}

.avatar-wrapper:hover .avatar-border {
    box-shadow: 0 0 50px rgba(255,255,255,0.8);
    transform: scale(1.05);
}

.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #000;
    transition: all 0.5s ease;
}

.avatar-wrapper:hover .avatar {
    filter: brightness(1.2) saturate(1.2);
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.profile-info h1:hover {
    letter-spacing: 8px;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.profile-info p {
    color: #aaa;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.profile-info p:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-left: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.section-title:hover {
    letter-spacing: 10px;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.social-btn {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    z-index: 0;
}

.social-btn:hover::before {
    left: 0;
}

.social-btn:hover {
    border-color: #fff;
    transform: translateX(10px);
}

.social-btn i {
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-btn:hover i {
    color: #000;
    transform: rotate(360deg);
}

.social-btn span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-btn:hover span {
    color: #000;
    letter-spacing: 3px;
}

.bank-section {
    margin-bottom: 40px;
}

.bank-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.bank-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid #333;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bank-card:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.2);
}

.bank-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.bank-card:hover .bank-name {
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.bank-info {
    position: relative;
    z-index: 1;
}

.bank-label {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bank-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.bank-card:hover .bank-value {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.copy-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.copy-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.review-form-section {
    margin-bottom: 40px;
    background: #0f0f0f;
    border: 2px solid #333;
    padding: 40px;
    border-radius: 15px;
}

.review-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    font-weight: 700;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.star-rating {
    display: flex;
    gap: 10px;
    font-size: 2rem;
}

.star-rating i {
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #ffd700;
    transform: scale(1.2);
}

.image-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 2px solid #333;
    border-radius: 5px;
    overflow: hidden;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item .remove-img {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #f00;
    color: #fff;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-btn {
    background: #333;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.upload-btn:hover {
    background: #fff;
    color: #000;
}

.upload-btn input {
    display: none;
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-success {
    background: #0f4d0f;
    border: 2px solid #0f7d0f;
    color: #6fff6f;
}

.alert-error {
    background: #4d0f0f;
    border: 2px solid #7d0f0f;
    color: #ff6f6f;
}

.alert-info {
    background: #0f2f4d;
    border: 2px solid #0f4f7d;
    color: #6fcfff;
}

.reviews-section {
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    background: #0f0f0f;
    border: 1px solid #333;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #fff;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.review-card:hover .reviewer-info h4 {
    letter-spacing: 2px;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.stars i {
    margin-right: 3px;
}

.review-text {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.review-card:hover .review-text {
    color: #fff;
}

.review-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.review-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-images img:hover {
    border-color: #fff;
    transform: scale(1.1);
}

.review-date {
    color: #666;
    font-size: 0.85rem;
    text-align: right;
}

.gallery-section {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: #fff;
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

.admin-upload-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 3px;
}

.copyright-footer {
    background: linear-gradient(135deg, #1a1a1a, #000);
    border-top: 2px solid #fff;
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.copyright-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s infinite;
}

.copyright-content {
    position: relative;
    z-index: 1;
}

.copyright-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6);
    }
}

.copyright-text {
    font-size: 1rem;
    color: #aaa;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.copyright-year {
    font-size: 0.9rem;
    color: #666;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid #fff;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-info h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .reviews-grid,
    .gallery-grid,
    .bank-cards {
        grid-template-columns: 1fr;
    }

    .music-player {
        bottom: 20px;
        right: 20px;
    }
}

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