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

:root {
    --color-dark-blue: #0a1628;
    --color-dark-blue-light: #1a2a4a;
    --color-turquoise: #00d4aa;
    --color-turquoise-light: #00f5c4;
    --color-gold: #ffd700;
    --color-gold-light: #ffed4a;
    --color-purple: #6b21a8;
    --color-purple-light: #9333ea;
    --color-cyan: #06b6d4;
    --color-pink: #ec4899;
    --color-orange: #f97316;
    --color-white: #ffffff;
    --color-gray: #e5e7eb;
    --color-gray-dark: #9ca3af;
    --gradient-primary: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-purple-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    --gradient-cyan: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-turquoise) 100%);
    --gradient-pink: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    --gradient-orange: linear-gradient(135deg, var(--color-orange) 0%, var(--color-gold) 100%);
    --gradient-mesh: 
        radial-gradient(at 40% 20%, rgba(0, 212, 170, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(147, 51, 234, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(255, 215, 0, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(236, 72, 153, 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(6, 182, 212, 0.2) 0px, transparent 50%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(0, 212, 170, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.4);
    --shadow-glow-purple: 0 0 20px rgba(147, 51, 234, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-bg-strong: rgba(255, 255, 255, 0.15);
    --glass-border-strong: rgba(255, 255, 255, 0.3);
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--color-dark-blue);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    color: var(--color-white);
    line-height: 1.6;
    min-height: 100vh;
    animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Card */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--glass-border-strong);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: var(--gradient-secondary);
    color: var(--color-dark-blue);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), 0 6px 20px rgba(0, 212, 170, 0.4);
}

.btn--gold {
    background: var(--gradient-gold);
    color: var(--color-dark-blue);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold), 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--color-turquoise);
    color: var(--color-turquoise);
}

.btn--outline:hover {
    background: var(--color-turquoise);
    color: var(--color-dark-blue);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}

/* Header */
.header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo-img {
    width: 128px;
    height: 128px;
    border-radius: 8px;
}

.header__brand-name {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__nav-link {
    color: var(--color-gray);
    font-weight: 500;
    position: relative;
}

.header__nav-link:hover {
    color: var(--color-turquoise);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-turquoise);
    transition: var(--transition);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--color-gray-dark);
}

.header__contacts a {
    color: var(--color-gray-dark);
}

.header__contacts a:hover {
    color: var(--color-turquoise);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.header__burger-line {
    width: 24px;
    height: 2px;
    background: var(--color-turquoise);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 150px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    z-index: 999;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-menu--active {
    display: block;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu__link {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
}

.mobile-menu__link:hover {
    color: var(--color-turquoise);
}

.mobile-menu__contacts {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.mobile-menu__contacts-item {
    color: var(--color-gray-dark);
    margin-bottom: 8px;
}

.mobile-menu__contacts-item a {
    color: var(--color-gray-dark);
}

.mobile-menu__contacts-item a:hover {
    color: var(--color-turquoise);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 212, 170, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero__subtitle {
    font-size: 24px;
    color: var(--color-gray);
    margin-bottom: 32px;
}

.hero__banner {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 16px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 2px solid var(--glass-border-strong);
}

.hero__banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero__banner:hover .hero__banner-img {
    transform: scale(1.05);
}

/* Section */
.section {
    padding: 64px 0;
}

.section__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Blocks */
.content-block {
    margin-bottom: 48px;
}

.content-block__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-turquoise);
}

.content-block__text {
    color: var(--color-gray);
    margin-bottom: 16px;
}

.content-block__list {
    list-style: disc;
    padding-left: 24px;
    color: var(--color-gray);
}

.content-block__list-item {
    margin-bottom: 12px;
}

.content-block__img {
    width: 100%;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin: 24px 0;
    overflow: hidden;
}

.content-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.features__item {
    text-align: center;
    transition: var(--transition);
}

.features__item:hover {
    transform: translateY(-8px);
}

.features__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.features__item:hover .features__icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--shadow-glow-gold);
}

.features__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-turquoise);
}

.features__text {
    color: var(--color-gray);
    font-size: 14px;
}

/* Stats Grid */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.stats__item {
    text-align: center;
    padding: 32px 16px;
    transition: var(--transition);
}

.stats__item:hover {
    transform: scale(1.05);
}

.stats__number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stats__label {
    color: var(--color-gray);
    font-size: 14px;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.pros-cons__section {
    padding: 24px;
}

.pros-cons__section--pros {
    border-left: 4px solid var(--color-turquoise);
}

.pros-cons__section--cons {
    border-left: 4px solid var(--color-purple);
}

.pros-cons__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pros-cons__title--pros {
    color: var(--color-turquoise);
}

.pros-cons__title--cons {
    color: var(--color-purple);
}

.pros-cons__list {
    list-style: none;
}

.pros-cons__list-item {
    padding: 8px 0;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pros-cons__list-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pros-cons__list-item--pros::before {
    background: var(--color-turquoise);
}

.pros-cons__list-item--cons::before {
    background: var(--color-purple);
}

/* Rating */
.rating {
    text-align: center;
    padding: 48px 24px;
    margin-bottom: 48px;
}

.rating__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-turquoise);
}

.rating__score {
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.rating__stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating__star {
    width: 32px;
    height: 32px;
    fill: var(--color-gold);
}

.rating__text {
    color: var(--color-gray);
}

/* FAQ Accordion */
.accordion {
    margin-bottom: 48px;
}

.accordion__item {
    margin-bottom: 16px;
}

.accordion__header {
    width: 100%;
    padding: 20px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion__header:hover {
    background: rgba(255, 255, 255, 0.15);
}

.accordion__icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    fill: var(--color-turquoise);
}

.accordion__item--active .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion__item--active .accordion__content {
    max-height: 500px;
}

.accordion__body {
    padding: 20px 24px;
    color: var(--color-gray);
    line-height: 1.8;
}

/* Form */
.form {
    max-width: 600px;
    margin: 0 auto;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-gray);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 16px;
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-turquoise);
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-gray-dark);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.form__group--error .form__error {
    display: block;
}

.form__group--error .form__input,
.form__group--error .form__textarea {
    border-color: #ef4444;
}

.form__success {
    display: none;
    padding: 16px;
    background: rgba(0, 212, 170, 0.2);
    border: 1px solid var(--color-turquoise);
    border-radius: 8px;
    color: var(--color-turquoise);
    text-align: center;
    margin-top: 24px;
}

.form__success--active {
    display: block;
}

/* News Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.news-card {
    overflow: hidden;
}

.news-card__img {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card__img img {
    transform: scale(1.05);
}

.news-card__content {
    padding: 20px;
}

.news-card__date {
    font-size: 12px;
    color: var(--color-turquoise);
    margin-bottom: 8px;
}

.news-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-white);
}

.news-card__excerpt {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.news-card__link {
    color: var(--color-turquoise);
    font-weight: 500;
    font-size: 14px;
}

.news-card__link:hover {
    text-decoration: underline;
}

/* Team */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.team__member {
    text-align: center;
}

.team__avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    overflow: hidden;
}

.team__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-white);
}

.team__role {
    color: var(--color-turquoise);
    font-size: 14px;
    margin-bottom: 8px;
}

.team__bio {
    color: var(--color-gray);
    font-size: 14px;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info__item {
    text-align: center;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-dark-blue);
}

.contact-info__label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-turquoise);
}

.contact-info__value {
    color: var(--color-gray);
}

.contact-info__value a {
    color: var(--color-gray);
}

.contact-info__value a:hover {
    color: var(--color-turquoise);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 64px 24px;
    margin: 48px 0;
}

.cta__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta__text {
    color: var(--color-gray);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: rgba(10, 22, 40, 0.98);
    border-top: 1px solid var(--glass-border);
    padding: 48px 0 24px;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 32px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-img {
    width: 128px;
    height: 128px;
    border-radius: 8px;
}

.footer__brand-name {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__menu-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-turquoise);
}

.footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__menu-link {
    color: var(--color-gray);
    font-size: 14px;
}

.footer__menu-link:hover {
    color: var(--color-turquoise);
}

.footer__contacts-item {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer__contacts-item a {
    color: var(--color-gray);
}

.footer__contacts-item a:hover {
    color: var(--color-turquoise);
}

.footer__publisher {
    color: var(--color-gray-dark);
    font-size: 14px;
    margin-bottom: 24px;
}

.footer__bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    color: var(--color-gray-dark);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header__nav,
    .header__contacts {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .section__title {
        font-size: 28px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .rating__score {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .features,
    .stats {
        grid-template-columns: 1fr;
    }
}

/* Page-Specific Styles for Unique Prefixes */

/* Home Page - home__ prefix */
.home__hero {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-purple-light) 100%);
}

.home__hero-title {
    animation: homeTitlePulse 4s ease-in-out infinite;
}

@keyframes homeTitlePulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

/* Review Page - review__ prefix */
.review__hero {
    background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-cyan) 100%);
}

.review__hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Page - about__ prefix */
.about__hero {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
}

.about__hero-title {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Page - contact__ prefix */
.contact__hero {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
}

.contact__hero-title {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* News Page - news__ prefix */
.news__hero {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-turquoise-light) 100%);
}

.news__news-card {
    transition: var(--transition);
}

.news__news-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 212, 170, 0.4);
}

/* FAQ Page - faq__ prefix */
.faq__hero {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple-light) 100%);
}

.faq__accordion-item {
    border-left: 3px solid var(--color-turquoise);
}

.faq__accordion-item:hover {
    border-left-color: var(--color-gold);
}

.faq__accordion-header {
    background: linear-gradient(90deg, rgba(0, 212, 170, 0.1), transparent);
}

/* Cookie Policy Page - cookie__ prefix */
.cookie__hero {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-gold-light) 100%);
}

.cookie__card {
    border-top: 3px solid var(--color-turquoise);
}

.cookie__card:hover {
    border-top-color: var(--color-gold);
}

/* Privacy Policy Page - privacy__ prefix */
.privacy__hero {
    background: linear-gradient(135deg, var(--color-dark-blue-light) 0%, var(--color-purple) 100%);
}

.privacy__card {
    border-top: 3px solid var(--color-purple-light);
}

.privacy__card:hover {
    border-top-color: var(--color-pink);
}

/* Terms and Conditions Page - terms__ prefix */
.terms__hero {
    background: linear-gradient(135deg, var(--color-gray-dark) 0%, var(--color-dark-blue-light) 100%);
}

.terms__card {
    border-top: 3px solid var(--color-gold-light);
}

.terms__card:hover {
    border-top-color: var(--color-orange);
}

/* Enhanced Hero Section Styles */
.home__hero {
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(147, 112, 219, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-purple-light) 100%);
    animation: heroGradientShift 10s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
}

.home__hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4aa' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Enhanced About Game Section */
.home__about .card {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(147, 112, 219, 0.1) 100%);
    border: 2px solid var(--color-purple-light);
    position: relative;
    overflow: hidden;
}

.home__about .card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(147, 112, 219, 0.3), transparent 30%);
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.home__about .card:hover::before {
    animation-duration: 2s;
}

/* Enhanced Features Section */
.home__features .features__item {
    position: relative;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(0, 212, 170, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.home__features .features__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.home__features .features__item:hover::before {
    opacity: 1;
}

.home__features .features__icon {
    background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-cyan) 100%);
    box-shadow: 
        0 0 20px rgba(0, 212, 170, 0.4),
        0 0 40px rgba(0, 212, 170, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.home__features .features__item:hover .features__icon {
    animation: iconGlow 1.5s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 170, 0.6), 0 0 40px rgba(0, 212, 170, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 170, 0.8), 0 0 60px rgba(0, 212, 170, 0.5); }
}

/* Enhanced Game Modes Section */
.home__game-modes .card {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid var(--color-gold-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home__game-modes .card:hover {
    transform: translateY(-12px) rotateX(5deg);
    border-color: var(--color-gold);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.2);
}

.home__game-modes .content-block__title {
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Pros and Cons Section */
.home__pros-cons .pros-cons__section {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.home__pros-cons .pros-cons__section--pros {
    border: 2px solid var(--color-turquoise);
    box-shadow: 
        0 0 20px rgba(0, 212, 170, 0.2),
        inset 0 0 30px rgba(0, 212, 170, 0.05);
}

.home__pros-cons .pros-cons__section--cons {
    border: 2px solid var(--color-purple);
    box-shadow: 
        0 0 20px rgba(147, 112, 219, 0.2),
        inset 0 0 30px rgba(147, 112, 219, 0.05);
}

.home__pros-cons .pros-cons__section:hover {
    transform: scale(1.02);
}

.home__pros-cons .pros-cons__list-item {
    transition: all 0.3s;
    padding: 12px 16px;
    margin: 8px 0;
    border-radius: 8px;
}

.home__pros-cons .pros-cons__list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.home__pros-cons .pros-cons__list-item--pros:hover {
    background: rgba(0, 212, 170, 0.1);
}

.home__pros-cons .pros-cons__list-item--cons:hover {
    background: rgba(147, 112, 219, 0.1);
}

/* Enhanced Game Stats Section */
.home__stats .stats__item {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(0, 212, 170, 0.1) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.home__stats .stats__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.home__stats .stats__item:hover::before {
    width: 300px;
    height: 300px;
}

.home__stats .stats__item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--color-turquoise);
    box-shadow: 
        0 15px 30px rgba(0, 212, 170, 0.3),
        0 0 40px rgba(0, 212, 170, 0.2);
}

.home__stats .stats__number {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: statNumberPulse 2s ease-in-out infinite;
}

@keyframes statNumberPulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% { 
        transform: scale(1.08); 
        text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    }
}

.home__stats .stats__label {
    position: relative;
    z-index: 1;
}
