* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --silver-primary: rgb(192, 192, 192);
    --silver-secondary: rgb(140, 140, 150);
    --dark-bg: #000000;
    --darker-bg: #050505;
    --text-primary: #ffffff;
    --text-secondary: #ededed;
    --color-bg1: rgb(10, 15, 25);
    --font-size: clamp(2.5rem, 8vw, 4.5rem);
    --color1: 27, 68, 137;
    --color2: 0, 170, 0;
    --color3: 20, 50, 100;
    --color4: 0, 120, 0;
    --color5: 35, 80, 150;
    --color-interactive: 0, 140, 0;
    --circle-size: 80%;
    --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}

.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  z-index: 0;
}

.gradient-bg svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.gradient-bg .gradients-container {
  filter: blur(20px);
  width: 100%;
  height: 100%;
}

.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}

.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}

.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}

.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}

.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}

.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

body > * {
  position: relative;
  z-index: 1;
}

body {
    font-family: 'Montserrat', 'Yariga', sans-serif;
    background: 
        radial-gradient(circle at 15% 25%, rgba(192, 192, 192, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(140, 140, 150, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.08) 0%, transparent 55%),
        linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #0d0d0d 60%, #000000 80%, #0a0a0a 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 600% 600%;
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 50%;
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 800px at 20% 30%, rgba(192, 192, 192, 0.12) 0%, transparent 50%),
        radial-gradient(circle 600px at 80% 70%, rgba(140, 140, 150, 0.08) 0%, transparent 50%),
        radial-gradient(circle 400px at 50% 50%, rgba(192, 192, 192, 0.06) 0%, transparent 50%);
    animation: floatingGlow 15s ease-in-out infinite alternate;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(192, 192, 192, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(192, 192, 192, 0.12), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(192, 192, 192, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(192, 192, 192, 0.15), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(140, 140, 150, 0.12), transparent),
        radial-gradient(1px 1px at 33% 90%, rgba(192, 192, 192, 0.1), transparent),
        radial-gradient(1px 1px at 15% 80%, rgba(192, 192, 192, 0.12), transparent);
    background-size: 200% 200%, 250% 250%, 300% 300%, 200% 200%, 250% 250%, 300% 300%, 200% 200%;
    background-position: 0% 0%, 20% 20%, 40% 40%, 60% 60%, 80% 80%, 10% 10%, 30% 30%;
    animation: sparkle 8s linear infinite;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding: 30px 0;
    text-align: center;
}

.logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

.hero {
    text-align: center;
    padding: 60px 0 80px;
}

.hero-award-wrapper {
    position: relative;
    width: clamp(120px, 15vw, 200px);
    margin: 0 auto 30px;
}

.hero-award-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: heroFadeIn 1s ease 0s forwards, floatAnimation 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(192, 192, 192, 0.3));
    position: relative;
    z-index: 2;
}

.hero-award-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: heroFadeIn 1s ease 0s forwards, shadowAnimation 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shadowAnimation {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(0.85);
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    color: rgb(255,242,181);
    font-family: 'Futura PT Medium', 'Yariga', 'Montserrat', sans-serif;
    background-image: linear-gradient(rgb(255,255,255) 45%, 
        rgb(170,170,170) 60%,
        rgb(192,192,192) 74%);
    text-align: center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.2s forwards;
}

.hero-subtitle {
    font-family: 'Yariga', 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    color:#dfdfdf;
    font-weight: 400;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    direction: rtl;
    text-align: center;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.5s forwards;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver-primary), transparent);
    margin: 40px auto 0;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.8s forwards, dividerExpand 1s ease 0.8s forwards;
}

.section-divider {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver-primary), transparent);
    margin: 0 auto 60px;
    opacity: 0;
    transition: opacity 0.6s ease, width 0.8s ease;
}

.section-divider.animate-in {
    opacity: 1;
    width: 100px;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dividerExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes smoothGradientFlow {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 50%;
    }
    25% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 50% 50%;
    }
    50% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 100% 50%;
    }
    75% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 50% 50%;
    }
    100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 50%;
    }
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

@keyframes logoShadow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.01);
    }
}

@keyframes floatingGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        background-position: 0% 0%, 20% 20%, 40% 40%, 60% 60%, 80% 80%, 10% 10%, 30% 30%;
    }
    25% {
        opacity: 0.5;
        background-position: 10% 10%, 30% 30%, 50% 50%, 70% 70%, 90% 90%, 20% 20%, 40% 40%;
    }
    50% {
        opacity: 0.7;
        background-position: 20% 20%, 40% 40%, 60% 60%, 80% 80%, 100% 100%, 30% 30%, 50% 50%;
    }
    75% {
        opacity: 0.5;
        background-position: 10% 10%, 30% 30%, 50% 50%, 70% 70%, 90% 90%, 20% 20%, 40% 40%;
    }
}

.info-section {
    padding: 60px 0;
}

.info-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 3.5rem;
    border-image: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(192, 192, 192, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        rgba(192, 192, 192, 0.3) 100%) 1;
    background: 
        linear-gradient(135deg, 
            rgba(192, 192, 192, 0.03) 0%, 
            rgba(0, 0, 0, 0.7) 25%, 
            rgba(0, 0, 0, 0.8) 75%, 
            rgba(192, 192, 192, 0.03) 100%),
        radial-gradient(
            100% 61.73% at 100% 50%,
            rgba(192, 192, 192, 0.05) 0%,
            transparent 100%
        ),
        radial-gradient(
            91.09% 56.23% at 0% 50%,
            rgba(192, 192, 192, 0.05) 0%,
            transparent 100%
        );
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(192, 192, 192, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(192, 192, 192, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.info-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.info-card::before {
    content: "";
    position: absolute;
    border-radius: inherit;
    inset: -8px;
    padding: 8px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(192, 192, 192, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
    box-shadow: 
        0 0 20px rgba(192, 192, 192, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.info-title {
    font-family: 'Yariga', 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #ededed;
    background: none;
    line-height: 1.6;
    direction: rtl;
}

.info-content {
    direction: rtl;
    text-align: right;
}

.info-content p {
    font-family: 'Yariga', 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.section-separator {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver-primary), transparent);
    opacity: 0;
    animation: heroFadeIn 1s ease 0.3s forwards;
}

.when-section {
    padding: 60px 0;
}

.when-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 3.3rem;
    border-image: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(192, 192, 192, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        rgba(192, 192, 192, 0.3) 100%) 1;
    background: 
        linear-gradient(135deg, 
            rgba(192, 192, 192, 0.03) 0%, 
            rgba(0, 0, 0, 0.7) 25%, 
            rgba(0, 0, 0, 0.8) 75%, 
            rgba(192, 192, 192, 0.03) 100%),
        radial-gradient(
            100% 61.73% at 100% 50%,
            rgba(192, 192, 192, 0.05) 0%,
            transparent 100%
        ),
        radial-gradient(
            91.09% 56.23% at 0% 50%,
            rgba(192, 192, 192, 0.05) 0%,
            transparent 100%
        );
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(192, 192, 192, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(192, 192, 192, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    text-align: center;
}

.when-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.when-card::before {
    content: "";
    position: absolute;
    border-radius: inherit;
    inset: -8px;
    padding: 8px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(192, 192, 192, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
    box-shadow: 
        0 0 20px rgba(192, 192, 192, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.when-title {
    font-family: 'Yariga', 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ededed;
    direction: rtl;
}

.when-content {
    font-family: 'Yariga', 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 2;
    color: var(--text-primary);
    opacity: 0.9;
    direction: rtl;
    margin: 0;
}

#timer {
    font-size: clamp(2rem, 5vw, 3em);
    font-weight: 100;
    color: white;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
    margin: 2rem 0;
    text-align: center;
    direction: rtl;
}

#timer div {
    display: inline-block;
    min-width: clamp(70px, 10vw, 90px);
    margin: 0 0.5rem;
}

#timer div span {
    color: var(--silver-primary);
    display: block;
    font-size: 0.35em;
    font-weight: 400;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.awards-section {
    padding: 40px 0 100px;
}

.section-title {
    font-family: 'Yariga', 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    direction: rtl;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    justify-items: center;
    direction: rtl;
}

.yariga-card {
    padding: 2rem 2.5rem;
    display: grid;
    place-items: center;
    gap: 1rem;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(192, 192, 192, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        rgba(192, 192, 192, 0.3) 100%) 1;
    background: 
        linear-gradient(135deg, 
            rgba(192, 192, 192, 0.03) 0%, 
            rgba(0, 0, 0, 0.7) 25%, 
            rgba(0, 0, 0, 0.8) 75%, 
            rgba(192, 192, 192, 0.03) 100%),
        radial-gradient(
            100% 61.73% at 100% 50%,
            rgba(192, 192, 192, 0.05) 0%,
            transparent 100%
        ),
        radial-gradient(
            91.09% 56.23% at 0% 50%,
            rgba(192, 192, 192, 0.05) 0%,
            transparent 100%
        );
    position: relative;
    cursor: pointer;
    width: 100%;
    max-width: 320px;
    height: 400px;
    transition: all 0.4s ease;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(192, 192, 192, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(192, 192, 192, 0.1);
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transition: all 0.4s ease;
}

.yariga-card.animate-in {
    animation: cardFadeIn 0.6s ease forwards;
}

.yariga-card.animate-in:nth-child(1) { animation-delay: 0.1s; }
.yariga-card.animate-in:nth-child(2) { animation-delay: 0.2s; }
.yariga-card.animate-in:nth-child(3) { animation-delay: 0.3s; }
.yariga-card.animate-in:nth-child(4) { animation-delay: 0.4s; }
.yariga-card.animate-in:nth-child(5) { animation-delay: 0.5s; }
.yariga-card.animate-in:nth-child(6) { animation-delay: 0.6s; }
.yariga-card.animate-in:nth-child(7) { animation-delay: 0.7s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        margin-top: 30px;
    }
    to {
        opacity: 1;
        margin-top: 0;
    }
}

.yariga-card::before,
.yariga-card::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(192, 192, 192, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
}

.yariga-card::before {
    inset: -8px;
    padding: 8px;
    opacity: 0.6;
    box-shadow: 
        0 0 20px rgba(192, 192, 192, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.yariga-card::after {
    inset: -16px;
    padding: 16px;
    opacity: 0.3;
    box-shadow: 
        0 0 40px rgba(192, 192, 192, 0.05),
        0 0 80px rgba(0, 0, 0, 0.2);
}

.yariga-card:hover {
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(192, 192, 192, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(192, 192, 192, 0.15),
        0 0 40px rgba(192, 192, 192, 0.1);
}

.yariga-card:hover::before {
    opacity: 0.8;
    box-shadow: 
        0 0 30px rgba(192, 192, 192, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.yariga-card:hover::after {
    opacity: 0.5;
    box-shadow: 
        0 0 60px rgba(192, 192, 192, 0.08),
        0 0 120px rgba(0, 0, 0, 0.3);
}

.yariga-card.featured {
    border-image: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.5) 0%, 
        rgba(255, 255, 255, 0.2) 25%, 
        rgba(192, 192, 192, 0.4) 50%, 
        rgba(255, 255, 255, 0.2) 75%, 
        rgba(192, 192, 192, 0.5) 100%) 1;
}

.yariga-card.featured::before {
    opacity: 0.8;
}

.yariga-card.featured::after {
    opacity: 0.5;
}

.card-title {
    font-family: 'Yariga', 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    background: radial-gradient(
        47.2% 50% at 50.39% 88.37%,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0) 100%
      ),
      rgba(255, 255, 255, 0.04);
    position: relative;
    transition: background 0.3s ease;
    border-radius: 14px;
    width: fit-content;
    height: fit-content;
    padding: 8px 16px;
    text-transform: uppercase;
    color: rgb(242 242 242);
    direction: rtl;
    margin: 0 auto;
}

.card-title:hover {
    background: radial-gradient(
        47.2% 50% at 50.39% 88.37%,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0) 100%
      ),
      rgba(255, 255, 255, 0.08);
}

.card-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1px;
    background: linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.48) 16.73%,
      rgba(255, 255, 255, 0.08) 30.2%,
      rgba(255, 255, 255, 0.08) 68.2%,
      rgba(255, 255, 255, 0.6) 81.89%
    );
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.card-subtitle {
    color: var(--silver-primary);
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: 0.15rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.vote-btn {
    font-family: 'Yariga', 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(192, 192, 192, 0.25);
    border-radius: 6px;
    color: rgba(242, 242, 242, 0.85);
    text-align: center;
    direction: rtl;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.yariga-card:hover .vote-btn {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

.silhouette-container {
    width: 160px;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.silhouette-svg {
    width: 120px;
    height: 140px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.2));
    animation: gentle-glow 3s ease-in-out infinite alternate;
}

.silhouette-img {
    width: 160px;
    height: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.2));
    animation: gentle-glow 3s ease-in-out infinite alternate;
}

.yariga-card:hover .silhouette-svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(192, 192, 192, 0.4));
}

.yariga-card:hover .silhouette-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(192, 192, 192, 0.4));
}

@keyframes gentle-glow {
    0% {
        filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.3));
    }
}

.card-icon {
    font-size: 2rem;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.yariga-card:hover .card-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.texture {
    position: absolute;
    background-image: linear-gradient(0deg, #ffffff 1px, transparent 1px);
    background-size: 1px 5px;
    inset: 0;
    mix-blend-mode: soft-light;
    -webkit-mask-image: radial-gradient(30% 45% at 100% 50%, white 0%, transparent 100%),
                        radial-gradient(30% 45% at 0% 50%, white 0%, transparent 100%);
    mask-image: radial-gradient(30% 45% at 100% 50%, white 0%, transparent 100%),
                radial-gradient(30% 45% at 0% 50%, white 0%, transparent 100%);
    pointer-events: none;
    border-radius: inherit;
}

.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(192, 192, 192, 0.2);
    color: var(--silver-primary);
    transition: all 0.3s ease;
    position: relative;
}

.social-icon::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(192, 192, 192, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.15);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .info-card,
    .when-card {
        padding: 3rem 1.5rem;
    }
    
    .awards-grid {
        gap: 40px;
        padding: 0 20px 0 20px;
    }
    
    .yariga-card {
        padding: 1.5rem 2rem;
        height: 380px;
    }
    
    .silhouette-container {
        width: 140px;
        height: 160px;
    }
    
    .silhouette-svg {
        width: 100px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 0.1em;
    }
    
    .hero-subtitle {
        letter-spacing: 0.15em;
        font-size: 0.9rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .yariga-card {
        max-width: 100%;
    }
    
    .card-title {
        font-size: 1.1rem;
        letter-spacing: 0.15rem;
    }
}
