* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Palestine Message Overlay */
.palestine-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 1s ease;
    backdrop-filter: blur(15px) brightness(0.3);
    background: rgba(0, 0, 0, 0.4);
}

.palestine-message {
    text-align: center;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 136, 0.8);
    box-shadow:
        0 25px 50px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 500px;
    backdrop-filter: blur(20px);
    transform: scale(1);
    transition: all 0.8s ease;
    animation: messageFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.palestine-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: messageShine 3s infinite;
}

@keyframes messageFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

@keyframes messageShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.palestine-image {
    width: 120px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
    animation: imageGlow 2s ease-in-out infinite;
}

.palestine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes imageGlow {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
    }

    50% {
        box-shadow: 0 15px 35px rgba(0, 255, 136, 0.6);
    }
}

.palestine-prayer {
    color: #00ff88;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.8;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
}

.enter-btn {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    position: relative;
    overflow: hidden;
}

.enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.enter-btn:hover::before {
    left: 100%;
}

.enter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.6);
}

.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* Space Background */
.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.floating-rocks {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.rock {
    position: absolute;
    background: #444;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* PUBG ID Copy Button */
.pubg-id-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.pubg-id-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Main Content */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding: 4rem 0;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    background: linear-gradient(45deg, #00ff88, #00cc6a, #0099ff);
    padding: 5px;
    animation: profileGlow 3s ease-in-out infinite;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes profileGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 153, 255, 0.8);
        transform: scale(1.05);
    }
}

.name {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ff88, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameGlow 2s ease-in-out infinite;
}

@keyframes nameGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(0, 153, 255, 0.6));
    }
}

.title {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Bio Section */
.bio-section {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.6s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.bio-section.visible {
    transform: translateX(0);
    opacity: 1;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #00ff88, #0099ff);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 153, 255, 0.8);
    }
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.about-section.visible {
    transform: translateY(0);
    opacity: 1;
}

.about-content {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Social Platforms */
.platforms-section {
    margin: 4rem 0;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.platforms-section.visible {
    transform: translateY(0);
    opacity: 1;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.platform-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(30px);
    opacity: 0;
    animation: platformSlideIn 0.8s ease forwards;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.platform-card:nth-child(1) {
    animation-delay: 0.1s;
}

.platform-card:nth-child(2) {
    animation-delay: 0.2s;
}

.platform-card:nth-child(3) {
    animation-delay: 0.3s;
}

.platform-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes platformSlideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.platform-card:hover::before {
    transform: translateX(100%);
}

.platform-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: iconBounce 2s ease-in-out infinite;
}

.platform-icon img {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.instagram-icon {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fcb045);
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.3);
}

.tiktok-icon {
    background: linear-gradient(135deg, #000, #ff0050);
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.3);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.platform-card:hover .platform-icon {
    transform: scale(1.15) rotate(5deg) translateY(-10px);
}

.platform-card:hover .platform-icon img {
    transform: scale(1.1);
}

.follower-count {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.platform-quote {
    font-style: italic;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

/* Hover effects for platform cards */
.youtube-card:hover {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.2);
}

.instagram-card:hover {
    border-color: rgba(228, 64, 95, 0.5);
    box-shadow: 0 30px 60px rgba(228, 64, 95, 0.2);
}

.tiktok-card:hover {
    border-color: rgba(255, 0, 80, 0.5);
    box-shadow: 0 30px 60px rgba(255, 0, 80, 0.2);
}

.facebook-card:hover {
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 30px 60px rgba(24, 119, 242, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .name {
        font-size: 2.5rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .palestine-message {
        max-width: 90%;
        padding: 2rem;
    }

    .palestine-prayer {
        font-size: 1.2rem;
    }

    .pubg-id-btn {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .platform-icon {
        width: 70px;
        height: 70px;
    }

    .platform-icon img {
        width: 40px;
        height: 40px;
    }
}

.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}