@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/GraphikArabic-Super.ttf') format('truetype');
    font-weight: 950;
    font-style: normal;
}

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

body {
    font-family: 'Graphik', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#intro-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    cursor: pointer;
}

/* QR Page Styles */
body.qr-page {
    background-image: url('../images/qr-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.qr-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 0;
    position: relative;
    z-index: 10;
}

.logos-img {
    height: 84px;
    width: auto;
    max-width: 400px;
}

.qr-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.qr-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.75rem;
    max-width: 1050px;
    width: 100%;
}

.qr-text-content {
    display: flex;
    flex-direction: column;
    /* gap: .65rem; */
    align-items: center;
}

.qr-title {
    font-size: 3.3rem;
    font-weight: 950; /* Super */
    color: #fff;
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0;
}

.qr-description {
    font-size: 2.3rem;
    font-weight: 300; /* Light */
    color: #fff;
    margin: 0;
    line-height: 1.7;
    max-width: 800px;
}

.qr-code-wrapper {
    background: rgba(0, 0, 0, 0);
    border-radius: 63px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.qr-code-img {
    width: 379px;
    height: 379px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.3)) 
            drop-shadow(0 0 40px rgba(0, 191, 255, 0.2))
            drop-shadow(0 0 60px rgba(0, 255, 127, 0.1));
    mix-blend-mode: screen;
}

/* Responsive */
@media (max-width: 1200px) {
    .qr-title {
        font-size: 2.5rem;
    }
    
    .qr-description {
        font-size: 1.8rem;
    }
    
    .qr-code-img {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .qr-title {
        font-size: 2rem;
    }
    
    .qr-description {
        font-size: 1.4rem;
    }
    
    .qr-code-img {
        width: 250px;
    }
    
    .logos-img {
        height: 60px;
    }
    
    .qr-content {
        gap: 2rem;
    }
}

