/* NordicReels - Unique CSS Architecture */
/* Using CSS Grid + Flexbox with 3D animations */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html, body {
    overflow-x: hidden !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
}

/* Container */
.nordicreels-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography */
@font-face {
    font-family: 'Inter';
    src: url('/nordicreels-fonts/nordicreels-inter-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/nordicreels-fonts/nordicreels-inter-bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* Buttons */
.nordicreels-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    perspective: 800px;
    transform-style: preserve-3d;
    box-shadow: 0 4px 12px rgba(25, 180, 28, 0.3);
}

.nordicreels-btn--primary {
    background: linear-gradient(135deg, #19B41C 0%, #20E724 50%, #128114 100%);
    color: #FFFFFF;
    animation: nordicreels-btn-float 4s ease-in-out infinite;
}

.nordicreels-btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    border: 2px solid #000000;
    backdrop-filter: blur(10px);
}

.nordicreels-btn--outline {
    background: linear-gradient(135deg, #d2e3d2 0%, #20E724 50%, #ebebeb 100%);
    color: #000000;
    border: 2px solid #000000;
}

.nordicreels-btn--large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 30px;
}

.nordicreels-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 180, 28, 0.4);
}

.nordicreels-btn:active {
    transform: translateY(0) scale(0.98);
}

@keyframes nordicreels-btn-float {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
        box-shadow: 0 4px 12px rgba(25, 180, 28, 0.3);
    }
    50% {
        transform: translateY(-4px) rotateX(2deg);
        box-shadow: 0 8px 20px rgba(25, 180, 28, 0.5);
    }
}

/* Header */
.nordicreels-header {
    background: #007A2F;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nordicreels-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.nordicreels-header__logo img {
    height: 50px;
    width: auto;
}

.nordicreels-nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nordicreels-nav__link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nordicreels-nav__link:hover {
    color: #20E724;
    transform: translateY(-1px);
}

.nordicreels-nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #20E724;
    transition: width 0.3s ease;
}

.nordicreels-nav__link:hover::after {
    width: 100%;
}

.nordicreels-header__auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nordicreels-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nordicreels-burger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.nordicreels-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.nordicreels-mobile-menu.active {
    display: flex;
}

.nordicreels-mobile-nav__list {
    list-style: none;
    text-align: center;
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.nordicreels-mobile-nav__link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nordicreels-mobile-nav__link:hover {
    color: #20E724;
    transform: scale(1.1);
}

/* Main Content */
.nordicreels-main {
    margin-top: 80px;
}

/* Hero Section */
.nordicreels-hero {
    background: linear-gradient(135deg, rgba(207, 242, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    background-image: url('/nordicreels-img/background/nordicreels-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.nordicreels-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
}

.nordicreels-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.nordicreels-hero__info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    /* backdrop-filter: blur(20px); */
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: nordicreels-hero-float 6s ease-in-out infinite;
}

@keyframes nordicreels-hero-float {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(1deg);
    }
}

.nordicreels-hero__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.nordicreels-hero__description {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #333333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.nordicreels-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Section */
.nordicreels-about {
    padding: 80px 0;
    background: #FFFFFF;
}

.nordicreels-about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    perspective: 1200px;
}

.nordicreels-game-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nordicreels-game-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(25, 180, 28, 0.2);
}

.nordicreels-game-card__image {
    margin: auto;
    margin-bottom: 20px;
    text-align: center;

    width: 100%;
    text-align: center;
}

.nordicreels-game-card__image img {
    max-width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: contain;
}

.nordicreels-game-card__title {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.nordicreels-game-card__description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    opacity: 0.8;
}

/* FAQ Section */
.nordicreels-faq {
    padding: 80px 0;
    background: #CFF2FF;
}

.nordicreels-faq__title {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.nordicreels-faq__intro {
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.nordicreels-faq__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nordicreels-faq__item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nordicreels-faq__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(25, 180, 28, 0.2);
}

.nordicreels-faq__question {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.nordicreels-faq__answer {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* Results Section */
.nordicreels-results {
    padding: 80px 0;
    background: #FFFFFF;
}

.nordicreels-results__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.nordicreels-results__title {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
}

.nordicreels-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.nordicreels-result-card {
    background: rgba(126, 126, 126, 0.95);
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.nordicreels-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(25, 180, 28, 0.2);
}

.nordicreels-result-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.nordicreels-result-card__numbers {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(4px, 1vw,10px);
    justify-content: center;
}

.nordicreels-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 5vw, 50px);
    aspect-ratio: 1/1;
    background: #ffffff;
    color: #2d0000;
    border-radius: 50%;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nordicreels-number--bonus {
    background: #20E724;
}

.nordicreels-number--hot {
    background: #FF6B35;
    animation: nordicreels-number-pulse 2s ease-in-out infinite;
}

@keyframes nordicreels-number-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

/* Disclaimer Section */
.nordicreels-disclaimer {
    padding: 80px 0;
    background: #7A7A7A;
    color: #FFFFFF;
}

.nordicreels-disclaimer__title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.nordicreels-disclaimer__content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.6;
}

.nordicreels-disclaimer__logos {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.nordicreels-disclaimer__logo-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nordicreels-disclaimer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.nordicreels-disclaimer__logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.nordicreels-disclaimer__logo a:hover {
    transform: scale(1.05);
}

.nordicreels-disclaimer__logo img {
    max-width: 100px;
    height: auto;
}

.nordicreels-disclaimer__logo p {
    font-size: 14px;
    line-height: 1.4;
}

.nordicreels-age-badge {
    width: 60px;
    height: 60px;
    background: #20E724;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}

.nordicreels-disclaimer__logos-main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.nordicreels-disclaimer__logos-main img {
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

.nordicreels-disclaimer__logos-link {
    display: grid;
    place-items: center;
}

/* Footer */
.nordicreels-footer {
    background: linear-gradient(135deg, #007A2F 0%, #417842 50%, #ebebeb 100%);
    color: #FFFFFF;
    padding: 40px 0;
}

.nordicreels-footer__nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.nordicreels-footer__nav-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nordicreels-footer__link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nordicreels-footer__link:hover {
    color: #20E724;
    transform: translateY(-2px);
}

.nordicreels-footer__logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nordicreels-footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.nordicreels-footer__logo:hover {
    transform: scale(1.1);
}

.nordicreels-footer__logo img {
    max-width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Popups */
.nordicreels-age-popup,
.nordicreels-underage-popup,
.nordicreels-cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nordicreels-age-popup.active,
.nordicreels-underage-popup.active,
.nordicreels-cookie-popup.active {
    opacity: 1;
    visibility: visible;
}

.nordicreels-age-popup__content,
.nordicreels-underage-popup__content,
.nordicreels-cookie-popup__content {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.nordicreels-age-popup.active .nordicreels-age-popup__content,
.nordicreels-underage-popup.active .nordicreels-underage-popup__content,
.nordicreels-cookie-popup.active .nordicreels-cookie-popup__content {
    transform: scale(1);
}

.nordicreels-age-popup__content h2,
.nordicreels-underage-popup__content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.nordicreels-age-popup__content p,
.nordicreels-underage-popup__content p,
.nordicreels-cookie-popup__content p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.nordicreels-age-popup__buttons,
.nordicreels-cookie-popup__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nordicreels-nav {
        display: none;
    }
    
    .nordicreels-burger {
        display: flex;
    }
    
    .nordicreels-header__auth {
        display: none;
    }
    
    .nordicreels-about__grid {
        grid-template-columns: 1fr;
    }
    
    .nordicreels-results__header {
        flex-direction: column;
        text-align: center;
    }
    
    .nordicreels-disclaimer__logo-group {
        grid-template-columns: 1fr;
    }
    
    .nordicreels-footer__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nordicreels-hero__info {
        padding: 20px;
        margin: 20px;
    }
    
    .nordicreels-hero__title {
        font-size: 28px;
    }
    
    .nordicreels-hero__description {
        font-size: 16px;
    }
    
    .nordicreels-btn--large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .nordicreels-reviews__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nordicreels-leaderboard__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nordicreels-review-card {
        padding: 24px;
    }

    .nordicreels-leaderboard-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nordicreels-container {
        padding: 0 15px;
    }
    
    .nordicreels-hero__title {
        font-size: 24px;
    }
    
    .nordicreels-game-card {
        padding: 20px;
    }
    
    .nordicreels-faq__item {
        padding: 20px;
    }
    
    .nordicreels-result-card {
        padding: 15px;
    }
    
    .nordicreels-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Horizontal Scroll Protection */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

* {
    max-width: 100%;
    word-wrap: break-word;
}

/* Auth Forms */
.nordicreels-auth {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #CFF2FF 0%, #FFFFFF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.nordicreels-auth__content {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.nordicreels-auth__form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: nordicreels-form-float 6s ease-in-out infinite;
}

@keyframes nordicreels-form-float {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-5px) rotateX(1deg);
    }
}

.nordicreels-auth__title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
}

.nordicreels-form__group {
    margin-bottom: 20px;
}

.nordicreels-form__label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.nordicreels-form__input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #F8F8F8;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.nordicreels-form__input:focus {
    outline: none;
    border-color: #20E724;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(32, 231, 36, 0.1);
    transform: translateY(-2px);
}

.nordicreels-form__input:invalid {
    border-color: #ff4444;
}

.nordicreels-auth__switch {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #666666;
}

.nordicreels-auth__link {
    color: #20E724;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nordicreels-auth__link:hover {
    color: #19B41C;
    text-decoration: underline;
}

/* About Page Styles */
.nordicreels-about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #CFF2FF 0%, #FFFFFF 100%);
    text-align: center;
}

.nordicreels-about-hero__title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.nordicreels-about-hero__subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.nordicreels-about-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.nordicreels-about-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nordicreels-about-content__title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.nordicreels-about-content__description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nordicreels-about-content__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nordicreels-values {
    padding: 80px 0;
    background: #CFF2FF;
}

.nordicreels-values__title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.nordicreels-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nordicreels-value-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.nordicreels-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25, 180, 28, 0.2);
}

.nordicreels-value-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.nordicreels-value-card__description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.nordicreels-team {
    padding: 80px 0;
    background: #FFFFFF;
}

.nordicreels-team__title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.nordicreels-team__description {
    font-size: 18px;
    color: #666666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.nordicreels-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nordicreels-team-member {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.nordicreels-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(25, 180, 28, 0.2);
}

.nordicreels-team-member__name {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.nordicreels-team-member__role {
    font-size: 18px;
    color: #20E724;
    font-weight: 600;
    margin-bottom: 15px;
}

.nordicreels-team-member__bio {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.nordicreels-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #19B41C 0%, #20E724 100%);
    color: #FFFFFF;
    text-align: center;
}

.nordicreels-cta__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nordicreels-cta__description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.nordicreels-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.nordicreels-contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #CFF2FF 0%, #FFFFFF 100%);
    text-align: center;
}

.nordicreels-contact-hero__title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.nordicreels-contact-hero__subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.nordicreels-contact-form {
    padding: 80px 0;
    background: #FFFFFF;
}

.nordicreels-contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.nordicreels-contact-form__title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.nordicreels-contact-form__description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.nordicreels-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nordicreels-contact-info__item {
    background: #F8F8F8;
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #20E724;
}

.nordicreels-contact-info__item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.nordicreels-contact-info__item p {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

.nordicreels-contact-form__form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nordicreels-form__textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.nordicreels-contact-faq {
    padding: 80px 0;
    background: #CFF2FF;
}

.nordicreels-contact-faq__title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.nordicreels-contact-faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nordicreels-contact-faq__item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.nordicreels-contact-faq__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(25, 180, 28, 0.2);
}

.nordicreels-contact-faq__item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.nordicreels-contact-faq__item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsible Play Page Styles */
.nordicreels-responsible-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #CFF2FF 0%, #FFFFFF 100%);
    text-align: center;
}

.nordicreels-responsible-hero__title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.nordicreels-responsible-hero__subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.nordicreels-responsible-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.nordicreels-responsible-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nordicreels-responsible-content__title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.nordicreels-responsible-content__description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nordicreels-responsible-content__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nordicreels-tools {
    padding: 80px 0;
    background: #CFF2FF;
}

.nordicreels-tools__title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.nordicreels-tools__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nordicreels-tool-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.nordicreels-tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25, 180, 28, 0.2);
}

.nordicreels-tool-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.nordicreels-tool-card__description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.nordicreels-warning {
    padding: 80px 0;
    background: #FFFFFF;
}

.nordicreels-warning__title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.nordicreels-warning__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nordicreels-warning-item {
    background: #FFF5F5;
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid #FF6B35;
    transition: all 0.4s ease;
}

.nordicreels-warning-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.nordicreels-warning-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.nordicreels-warning-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.nordicreels-help {
    padding: 80px 0;
    background: linear-gradient(135deg, #19B41C 0%, #20E724 100%);
    color: #FFFFFF;
    text-align: center;
}

.nordicreels-help__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nordicreels-help__description {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.nordicreels-help__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nordicreels-help-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.nordicreels-help-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.nordicreels-help-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.nordicreels-help-item p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Debug Commands */
.nordicreels-debug {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 9999;
}

/* Reviews Section */
.nordicreels-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FFFE 0%, #E8F5E8 100%);
}

.nordicreels-reviews__title {
    text-align: center;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #19B41C 0%, #20E724 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nordicreels-reviews__intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nordicreels-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.nordicreels-review-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(25, 180, 28, 0.1);
    border: 1px solid rgba(25, 180, 28, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nordicreels-review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    color: rgba(25, 180, 28, 0.1);
    font-family: serif;
}

.nordicreels-review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(25, 180, 28, 0.2);
}

.nordicreels-review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.nordicreels-review-card__name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.nordicreels-review-card__rating {
    color: #FFD700;
    font-size: 18px;
}

.nordicreels-review-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.nordicreels-review-card__game {
    display: inline-block;
    background: linear-gradient(135deg, #19B41C 0%, #20E724 100%);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Leaderboard Section */
.nordicreels-leaderboard {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #FFFFFF;
}

.nordicreels-leaderboard__title {
    text-align: center;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nordicreels-leaderboard__intro {
    text-align: center;
    font-size: 18px;
    color: #CCC;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nordicreels-leaderboard__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.nordicreels-leaderboard-card {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.nordicreels-leaderboard-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.nordicreels-leaderboard-card__position {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.nordicreels-leaderboard-card:nth-child(1) .nordicreels-leaderboard-card__position {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: nordicreels-gold-pulse 2s ease-in-out infinite;
}

.nordicreels-leaderboard-card:nth-child(2) .nordicreels-leaderboard-card__position {
    background: linear-gradient(135deg, #C0C0C0 0%, #E0E0E0 100%);
}

.nordicreels-leaderboard-card:nth-child(3) .nordicreels-leaderboard-card__position {
    background: linear-gradient(135deg, #CD7F32 0%, #DAA520 100%);
}

@keyframes nordicreels-gold-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
    }
}

.nordicreels-leaderboard-card__info {
    flex: 1;
}

.nordicreels-leaderboard-card__name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #FFFFFF;
}

.nordicreels-leaderboard-card__win {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 4px 0;
}

.nordicreels-leaderboard-card__game {
    font-size: 14px;
    color: #CCC;
    margin: 0;
}

/* Additional styles for result cards */
.nordicreels-result-card__info {
    text-align: center;
    margin: 16px 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
} 

blockquote {
    text-align: center;
    line-height: 3;
}