* {
    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;
}

body {
    font-family: 'Montserrat', 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-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    background: linear-gradient(
        135deg,
        #e8e8e8 0%,
        #ffffff 15%,
        #c0c0c0 30%,
        #a8a8a8 45%,
        #ffffff 50%,
        #c0c0c0 55%,
        #8c8c96 70%,
        #ffffff 85%,
        #c0c0c0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.2s forwards;
}

.hero-subtitle {
    font-family: 'Sahel', '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: 'Sahel', '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: 'Sahel', '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.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;
    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: 'Sahel', '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: 'Sahel', '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;
}

.awards-section {
    padding: 40px 0 100px;
}

.section-title {
    font-family: 'Sahel', '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;
}

.luxury-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;
}

.luxury-card.animate-in {
    animation: cardFadeIn 0.6s ease forwards;
}

.luxury-card.animate-in:nth-child(1) { animation-delay: 0.1s; }
.luxury-card.animate-in:nth-child(2) { animation-delay: 0.2s; }
.luxury-card.animate-in:nth-child(3) { animation-delay: 0.3s; }
.luxury-card.animate-in:nth-child(4) { animation-delay: 0.4s; }
.luxury-card.animate-in:nth-child(5) { animation-delay: 0.5s; }
.luxury-card.animate-in:nth-child(6) { animation-delay: 0.6s; }
.luxury-card.animate-in:nth-child(7) { animation-delay: 0.7s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        margin-top: 30px;
    }
    to {
        opacity: 1;
        margin-top: 0;
    }
}

.luxury-card::before,
.luxury-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;
}

.luxury-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);
}

.luxury-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);
}

.luxury-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);
}

.luxury-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);
}

.luxury-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);
}

.luxury-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;
}

.luxury-card.featured::before {
    opacity: 0.8;
}

.luxury-card.featured::after {
    opacity: 0.5;
}

.card-title {
    font-family: 'Sahel', '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: 'Sahel', '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;
}

.luxury-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;
}

.luxury-card:hover .silhouette-svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(192, 192, 192, 0.4));
}

.luxury-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;
}

.luxury-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);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .awards-grid {
        gap: 40px;
    }
    
    .luxury-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;
    }
    
    .luxury-card {
        max-width: 100%;
    }
    
    .card-title {
        font-size: 1.1rem;
        letter-spacing: 0.15rem;
    }
}
