@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    background-color: #101010;
    color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Watcher Character Styles */
.watcher {
    position: absolute;
    top: -60px; /* Position above the card */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 80px;
    height: 80px;
}

.watcher-body {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #7b4397, #dc2430);
    border-radius: 50% 50% 40% 40%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.watcher-eyes {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.watcher-eye {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.watcher-pupil {
    width: 10px;
    height: 10px;
    background: #2c3e50;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.container {
    position: relative;
    z-index: 1;
}

.card {
    background-color: rgba(26, 26, 26, 0.85);
    padding: 40px 50px;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.badge {
    width: 100px;
    height: 100px;
    margin-bottom: -20px;
    position: relative;
}

.badge img {
    width: 100%;
    filter: drop-shadow(0 0 15px rgba(140, 0, 255, 0.8));
    pointer-events: none; /* Disable mouse events on the image */
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin: 0;
    background: linear-gradient(90deg, #c37dff, #8c52ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ and Edge */
}


.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    color: #aaa;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(40, 40, 40, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.social-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.fa-instagram:hover { color: #E4405F; }
.fa-x-twitter:hover { color: #ffffff; }
.fa-youtube:hover { color: #FF0000; }
.fa-envelope:hover { color: #7f7f7f; }
.fa-shopping-cart:hover { color: #4CAF50; }

/* Smooth reveal text effect */
.typing-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
}

.typing-text.reveal {
    animation: smoothReveal 2s ease-out forwards;
}

@keyframes smoothReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

