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

:root {
    --bg-primary: #1A1A1A;
    --text-primary: #FFFFFF;
    --accent-primary: #D4AF37;
    --accent-primary-hover: #C9A227;
    --accent-primary-light: #2A2418;
    --bg-secondary: #252525;
    --bg-tertiary: #2A2A2A;
    --rg-green: #10B981;
    --rg-green-light: #1A3A2E;
    --text-secondary: #CCCCCC;
    --text-tertiary: #999999;
    --border-color: #333333;
    --border-color-light: #2A2A2A;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --max-width: 1080px;
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color var(--transition-base);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 0;
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    line-height: 1.7;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all var(--transition-base);
    border-radius: 2px;
}

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

table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

@media (max-width: 768px) {
    table {
        font-size: 0.875rem;
    }
}

a:hover {
    color: var(--accent-primary-hover);
    text-decoration: underline;
}

a:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

a:active {
    transform: scale(0.98);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    animation: fadeIn 0.4s ease-in;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.625rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color-light);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
}

header:hover {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    position: relative;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
}

.logo {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-base);
    cursor: pointer;
    letter-spacing: -0.01em;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-left: 3rem;
    text-decoration: none;
}

.logo:focus {
    text-decoration: none;
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #F4D03F 50%, #D4AF37 100%);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3), inset 0 2px 4px rgba(212, 175, 55, 0.2);
    transition: all var(--transition-base);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo::after {
    content: '';
    position: absolute;
    left: 10px;
    width: 20px;
    height: 20px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.9) 0%, rgba(212, 175, 55, 0.7) 30%, transparent 60%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(212, 175, 55, 0.85) 100%);
    border-radius: 5px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(212, 175, 55, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    transform: rotate(-5deg);
}

.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
    text-decoration: none;
}

.logo:hover::before {
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45), inset 0 2px 4px rgba(212, 175, 55, 0.25);
}

.logo:hover::after {
    transform: rotate(3deg) scale(1.1);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(212, 175, 55, 0.9),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.rg-badge {
    background: linear-gradient(135deg, var(--rg-green) 0%, #059669 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.rg-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

nav {
    transition: max-height 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

nav a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.375rem 0.625rem;
    display: block;
    min-height: 36px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: all var(--transition-base);
    position: relative;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--accent-primary);
    text-decoration: none;
    background-color: var(--accent-primary-light);
}

nav a:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

main {
    flex: 1;
    padding: 0.5rem 0;
    animation: fadeIn 0.5s ease-in;
    margin-top: 75px;
}

.hero {
    text-align: center;
    padding: 0.375rem 0.75rem 0.25rem;
    margin-bottom: 0.375rem;
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, transparent 100%);
    border-radius: 4px;
    border-left: 2px solid var(--accent-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), #F4D03F);
    opacity: 0.3;
}

.hero h1 {
    margin-bottom: 0.1875rem;
    animation: fadeInUp 0.6s ease-out;
    font-size: 1.5rem;
    line-height: 1.3;
}

.hero p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    animation: fadeInUp 0.7s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ranking-section {
    margin-bottom: 0.75rem;
}

.ranking-intro {
    margin-bottom: 0.375rem;
    padding: 0.375rem 0.625rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 4px;
    border-left: 2px solid var(--accent-primary);
    box-shadow: none;
    transition: all var(--transition-base);
    font-size: 0.7rem;
    line-height: 1.35;
}

.ranking-intro h2 {
    font-size: 1rem;
    margin-bottom: 0.1875rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.ranking-intro:hover {
    box-shadow: none;
    transform: none;
}

.brand-card {
    background: var(--bg-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
    padding: 0.875rem;
    margin-bottom: 0.875rem;
    transition: all var(--transition-slow);
    position: relative;
    overflow: visible;
    animation: brandCardFadeIn 0.6s ease-out;
    box-shadow: 
        0 0 0 2px rgba(212, 175, 55, 0.1),
        0 0 20px rgba(212, 175, 55, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}


@keyframes brandCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-primary), #F4D03F, var(--accent-primary));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
    transition: all var(--transition-slow);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.4;
        filter: blur(8px);
    }
    50% {
        opacity: 0.7;
        filter: blur(12px);
    }
}

.brand-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), #F4D03F);
    border-radius: 16px 0 0 16px;
    opacity: 1;
    transition: width var(--transition-base);
}


.brand-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--border-color-light);
}

.position-badge {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 7px;
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 65px;
    text-align: center;
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 55, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.position-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.position-badge:hover::before {
    left: 100%;
}

.position-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.brand-title-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0;
    color: var(--accent-primary);
    transition: color var(--transition-base);
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    flex: 1;
    min-width: 0;
}


.rating {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--accent-primary-light) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 6px;
    display: inline-flex;
    border: 1px solid var(--accent-primary-light);
    flex-shrink: 0;
    align-self: flex-start;
}

.rating-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.rating-max {
    font-size: 1.35rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.category-badge {
    display: none;
}

.license-note {
    font-size: 0.75rem;
    color: var(--rg-green);
    font-weight: 500;
    margin-top: 0.25rem;
    line-height: 1.3;
    width: 100%;
    flex-basis: 100%;
}

.brand-description {
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
    background: transparent;
    border-radius: 0;
    border-left: 3px solid var(--accent-primary);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
}

.brand-features {
    list-style: none;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
}

.brand-features li {
    padding: 0.375rem 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 0;
    background-color: transparent;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.brand-features li:hover {
    transform: translateY(-1px);
}

.brand-features li::before {
    content: "✓";
    position: absolute;
    left: 0.625rem;
    color: var(--rg-green);
    font-weight: 800;
    font-size: 1.1em;
    transition: transform var(--transition-base);
}

.brand-features li:hover::before {
    transform: scale(1.2) rotate(5deg);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 9px;
    font-weight: 800;
    font-size: 1.05rem;
    text-align: center;
    min-width: 200px;
    min-height: 48px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: var(--shadow-md), 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    width: 100%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    color: white;
    border-color: rgba(212, 175, 55, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.cta-button:focus {
    outline: 3px solid var(--accent-primary-light);
    outline-offset: 3px;
}

.affiliate-disclosure {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color-light);
    line-height: 1.3;
}

.rg-block {
    background: linear-gradient(135deg, #2A2418 0%, #1F1A0F 100%);
    border-left: 5px solid var(--rg-green);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.rg-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.rg-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.rg-block h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.rg-block p {
    margin-bottom: 0.75rem;
}

.rg-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.rg-links a {
    color: var(--accent-primary);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    background-color: rgba(42, 42, 42, 0.9);
    border-radius: 8px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.rg-links a:hover {
    background-color: var(--bg-primary);
    border-color: var(--rg-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-top: 2px solid var(--border-color-light);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), #F4D03F);
    opacity: 0.2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all var(--transition-base);
    padding: 0.5rem 0.75rem;
    display: inline-block;
    border-radius: 6px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

.footer-section a:hover {
    color: var(--accent-primary);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 1rem;
    text-decoration: none;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in;
}

.page-content section {
    margin-bottom: 2.5rem;
    padding: 0;
}

.page-content ul,
.page-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color-light);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition-base);
    -webkit-appearance: none;
    appearance: none;
    min-height: 52px;
    touch-action: manipulation;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--border-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-primary-light);
    background-color: var(--bg-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
    opacity: 0.7;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 3px solid var(--accent-primary);
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.cookie-banner-text a {
    color: var(--accent-primary);
    font-weight: 500;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-button {
    padding: 1rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    min-height: 52px;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cookie-button:active::before {
    width: 300px;
    height: 300px;
}

.cookie-button:active {
    transform: scale(0.97);
}

.cookie-button.accept {
    background-color: var(--accent-primary);
    color: white;
}

.cookie-button.accept:hover {
    background-color: #3B56E6;
}

.cookie-button.reject {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cookie-button.reject:hover {
    background-color: var(--border-color);
}

.cookie-button:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    body {
        padding-bottom: env(safe-area-inset-bottom);
    }

    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.35rem;
        line-height: 1.4;
    }

    h3 {
        font-size: 1.15rem;
    }

    .container {
        padding: 0 0.875rem;
    }

    header {
        padding: 0.3125rem 0;
    }

    .header-content {
        gap: 0.125rem;
    }

    .header-top {
        margin-bottom: 0;
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 0.375rem;
    }

    .logo {
        font-size: 0.9rem;
        flex: 1;
        font-weight: 800;
        letter-spacing: -0.01em;
        padding-left: 2.5rem;
    }

    .logo::before {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .logo::after {
        left: 8px;
        width: 16px;
        height: 16px;
        border-radius: 3px;
    }

    .rg-badge {
        font-size: 0.625rem;
        padding: 0.3125rem 0.625rem;
        font-weight: 700;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        max-height: 0;
        overflow: hidden;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
        overflow-y: auto;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        padding: 0.5rem 0;
    }

    nav ul li {
        border-bottom: 1px solid var(--border-color);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        padding: 0.75rem 0.875rem;
        min-height: 44px;
        font-size: 0.9rem;
        margin: 0.125rem 0;
        border-radius: 6px;
    }

    main {
        padding: 0.125rem 0;
        margin-top: 70px;
    }

    .hero {
        padding: 0.375rem 0.625rem;
        margin-bottom: 0.3125rem;
        border-radius: 4px;
        background: var(--bg-tertiary);
        box-shadow: none;
        border-left: none;
    }

    .hero h1 {
        font-size: 0.95rem;
        margin-bottom: 0.1875rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-primary);
        white-space: nowrap;
    }

    .hero p {
        font-size: 0.75rem;
        line-height: 1.35;
        margin-bottom: 0;
        color: var(--text-primary);
    }

    .hero p:last-child {
        font-size: 0.65rem;
        margin-bottom: 0;
        color: var(--text-secondary);
        padding: 0.375rem;
        background: rgba(42, 42, 42, 0.7);
        border-radius: 3px;
        border-left: 2px solid var(--accent-primary);
        line-height: 1.3;
    }

    .hero p strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .ranking-intro {
        padding: 0.3125rem 0.5rem;
        margin-bottom: 0.3125rem;
        font-size: 0.6875rem;
        line-height: 1.35;
        background: var(--bg-secondary);
        border-left: 2px solid var(--accent-primary);
        border-radius: 4px;
        box-shadow: none;
    }

    .ranking-intro h2 {
        font-size: 0.85rem;
        margin-bottom: 0.1875rem;
        color: var(--text-primary);
        font-weight: 700;
        line-height: 1.25;
    }

    .ranking-intro p {
        margin-bottom: 0;
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .ranking-section {
        margin-bottom: 0.625rem;
        margin-top: 0;
    }

    .brand-card {
        padding: 0.4375rem;
        margin-bottom: 0.4375rem;
        margin-top: 0;
        border-radius: 8px;
        border: 3px solid var(--accent-primary);
        background: var(--bg-primary);
        box-shadow: 
            0 0 0 1px rgba(212, 175, 55, 0.3),
            0 0 20px rgba(212, 175, 55, 0.2),
            0 4px 12px rgba(0, 0, 0, 0.15);
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        scroll-margin-top: 0.5rem;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }

    .brand-card::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--accent-primary), #F4D03F, var(--accent-primary));
        border-radius: 10px;
        opacity: 0.6;
        z-index: -1;
        filter: blur(8px);
        animation: brandGlow 2s ease-in-out infinite;
    }

    @keyframes brandGlow {
        0%, 100% {
            opacity: 0.4;
        }
        50% {
            opacity: 0.7;
        }
    }


    .brand-card:active {
        transform: translateY(-1px);
        box-shadow: 
            0 0 0 2px rgba(244, 208, 63, 0.6),
            0 0 25px rgba(212, 175, 55, 0.5),
            0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .brand-card::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--accent-primary), #F4D03F, var(--accent-primary));
        border-radius: 10px;
        opacity: 0.6;
        z-index: -1;
        filter: blur(8px);
        animation: brandGlow 2s ease-in-out infinite;
    }

    .brand-card::after {
        display: none;
    }

    .brand-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.4375rem;
        margin-bottom: 0.3125rem;
        padding-bottom: 0.3125rem;
        border-bottom: 1px solid var(--border-color-light);
        width: 100%;
    }

    .position-badge {
        align-self: flex-start;
        font-size: 0.775rem;
        padding: 0.3125rem 0.5625rem;
        min-width: 38px;
        font-weight: 900;
        background: linear-gradient(135deg, var(--accent-primary) 0%, #F4D03F 50%, var(--accent-primary-hover) 100%);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 
            0 0 10px rgba(212, 175, 55, 0.5),
            0 3px 10px rgba(212, 175, 55, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
        text-align: center;
        border-radius: 6px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .brand-title-section {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .brand-name {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 0;
        font-weight: 900;
        color: var(--accent-primary);
        text-shadow: 
            0 2px 8px rgba(212, 175, 55, 0.5),
            0 0 15px rgba(212, 175, 55, 0.3);
        letter-spacing: -0.01em;
        flex: 1;
        min-width: 0;
    }

    .rating {
        padding: 0.25rem 0.5625rem;
        margin-bottom: 0;
        background: rgba(212, 175, 55, 0.15);
        border: none;
        border-radius: 3px;
        display: inline-flex;
        align-items: baseline;
        flex-shrink: 0;
        align-self: flex-start;
    }

    .rating-value {
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--accent-primary);
    }

    .rating-max {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .license-note {
        font-size: 0.6875rem;
        margin-top: 0.25rem;
        line-height: 1.3;
        display: block;
        padding: 0.375rem;
        background: rgba(16, 185, 129, 0.08);
        border-left: 2px solid var(--rg-green);
        border-radius: 3px;
        color: var(--rg-green);
        font-weight: 600;
        width: 100%;
        flex-basis: 100%;
    }

    .category-badge {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.4375rem;
        margin-bottom: 0.25rem;
        display: inline-block;
        background-color: rgba(212, 175, 55, 0.15);
        color: var(--accent-primary);
    }

    .brand-description {
        font-size: 0.725rem;
        line-height: 1.35;
        padding-left: 0.4375rem;
        margin-bottom: 0.375rem;
        background: transparent;
        border-left: 3px solid var(--accent-primary);
        border-radius: 0;
        font-weight: 500;
    }

    .brand-features {
        grid-template-columns: 1fr;
        gap: 0.1rem;
        margin-bottom: 0.3125rem;
    }

    .brand-features li {
        padding: 0.1875rem 0.3125rem;
        padding-left: 1.125rem;
        font-size: 0.6875rem;
        background: transparent;
        border: none;
        border-radius: 0;
        min-height: 24px;
        display: flex;
        align-items: center;
        font-weight: 500;
        position: relative;
        line-height: 1.28;
    }

    .brand-features li::before {
        content: "✓";
        position: absolute;
        left: 0.3125rem;
        color: var(--rg-green);
        font-weight: 800;
        font-size: 0.875em;
        transition: transform var(--transition-base);
    }

    .brand-features li:hover::before {
        transform: scale(1.2) rotate(5deg);
    }

    .cta-button {
        width: 100%;
        padding: 0.75rem 1.375rem;
        font-size: 0.9rem;
        border-radius: 7px;
        min-height: 44px;
        min-width: 100%;
        font-weight: 900;
        background: linear-gradient(135deg, var(--accent-primary) 0%, #F4D03F 50%, var(--accent-primary-hover) 100%);
        box-shadow: 
            0 0 15px rgba(212, 175, 55, 0.5),
            0 4px 12px rgba(212, 175, 55, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
        margin-bottom: 0.3125rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        letter-spacing: 0.02em;
        border: 2px solid rgba(255, 255, 255, 0.2);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

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

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.6),
            0 5px 15px rgba(212, 175, 55, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .cta-button:active {
        transform: translateY(0);
        box-shadow: 
            0 0 15px rgba(212, 175, 55, 0.5),
            0 3px 10px rgba(212, 175, 55, 0.4);
    }

    .affiliate-disclosure {
        font-size: 0.5625rem;
        margin-top: 0;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border-color-light);
        text-align: center;
        color: var(--text-secondary);
        font-weight: 500;
        line-height: 1.3;
    }

    .rg-block {
        padding: 0.875rem;
        margin: 1rem 0;
        border-radius: 6px;
        border-left: 3px solid var(--rg-green);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        background: rgba(16, 185, 129, 0.05);
    }

    .rg-block h2 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
        color: var(--text-primary);
    }

    .rg-block p {
        font-size: 0.75rem;
        line-height: 1.45;
        margin-bottom: 0.625rem;
        color: var(--text-primary);
    }

    .rg-block p strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .rg-links {
        flex-direction: column;
        gap: 0.625rem;
        margin-top: 0.875rem;
    }

    .rg-links a {
        padding: 0.6875rem 1rem;
        font-size: 0.8125rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 600;
        background-color: rgba(16, 185, 129, 0.1);
        border-radius: 5px;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .page-content {
        padding: 0 0.5rem;
    }

    .page-content section {
        margin-bottom: 1rem;
    }

    .page-content ul,
    .page-content ol {
        margin-left: 1rem;
        padding-left: 0.5rem;
    }

    .page-content li {
        margin-bottom: 0.625rem;
        line-height: 1.5;
    }

    .cookie-banner {
        padding: 0.875rem;
        padding-bottom: calc(0.875rem + env(safe-area-inset-bottom));
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cookie-banner-text {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        gap: 0.625rem;
    }

    .cookie-button {
        width: 100%;
        padding: 0.875rem 1.25rem;
        min-height: 44px;
        font-size: 0.9rem;
    }

    footer {
        padding: 1.25rem 0;
        margin-top: 1.5rem;
        border-top: 2px solid rgba(212, 175, 55, 0.2);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
        color: var(--accent-primary);
        font-weight: 800;
    }

    .footer-section ul {
        margin: 0;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section a {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        color: var(--text-primary);
        background: rgba(212, 175, 55, 0.05);
        border-radius: 6px;
        transition: all var(--transition-base);
        border: 1px solid transparent;
    }

    .footer-section a:hover,
    .footer-section a:active {
        color: var(--accent-primary);
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.3);
        padding-left: 1rem;
        text-decoration: none;
        transform: translateX(4px);
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.75rem;
        line-height: 1.5;
        color: var(--text-secondary);
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.625rem;
    }

    header {
        padding: 0.3125rem 0;
    }

    main {
        padding: 0.125rem 0;
        margin-top: 65px;
    }

    h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .logo {
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: -0.01em;
        padding-left: 2.25rem;
    }

    .logo::before {
        width: 28px;
        height: 28px;
        border-radius: 7px;
    }

    .logo::after {
        left: 7px;
        width: 14px;
        height: 14px;
        border-radius: 3px;
    }

    .hero {
        padding: 0.3125rem 0.5rem;
        margin-bottom: 0.25rem;
        border-radius: 3px;
        background: var(--bg-tertiary);
        box-shadow: none;
        border-left: none;
    }

    .hero h1 {
        font-size: 0.85rem;
        margin-bottom: 0.125rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-primary);
        white-space: nowrap;
    }

    .hero p {
        font-size: 0.7rem;
        line-height: 1.35;
        margin-bottom: 0;
        color: var(--text-primary);
    }

    .hero p:last-child {
        font-size: 0.625rem;
        margin-bottom: 0;
        color: var(--text-secondary);
        padding: 0.3125rem;
        background: rgba(42, 42, 42, 0.7);
        border-radius: 3px;
        border-left: 2px solid var(--accent-primary);
    }

    .hero p strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .ranking-intro {
        padding: 0.25rem 0.4375rem;
        margin-bottom: 0.25rem;
        font-size: 0.65rem;
        line-height: 1.35;
        background: var(--bg-secondary);
        border-left: 2px solid var(--accent-primary);
        border-radius: 3px;
        box-shadow: none;
    }

    .ranking-intro h2 {
        font-size: 0.8rem;
        margin-bottom: 0.125rem;
        color: var(--text-primary);
        font-weight: 700;
        line-height: 1.25;
    }

    .ranking-intro p {
        margin-bottom: 0;
        font-size: 0.65rem;
    }

    .ranking-section {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .license-note {
        font-size: 0.625rem;
        padding: 0.25rem 0.375rem;
        line-height: 1.3;
        margin-top: 0.25rem;
        width: 100%;
        flex-basis: 100%;
    }

    .category-badge {
        display: none;
    }

    .brand-card {
        padding: 0.375rem;
        border-radius: 7px;
        margin-bottom: 0.375rem;
        margin-top: 0;
        border: 3px solid var(--accent-primary);
        display: block;
        width: 100%;
        max-width: 100%;
        background: var(--bg-primary);
        box-shadow: 
            0 0 0 1px rgba(212, 175, 55, 0.3),
            0 0 18px rgba(212, 175, 55, 0.2),
            0 3px 10px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }

    .brand-card::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--accent-primary), #F4D03F, var(--accent-primary));
        border-radius: 9px;
        opacity: 0.55;
        z-index: -1;
        filter: blur(7px);
        animation: brandGlow 2s ease-in-out infinite;
    }


    .brand-card:active {
        transform: translateY(-1px);
        box-shadow: 
            0 0 0 2px rgba(244, 208, 63, 0.6),
            0 0 20px rgba(212, 175, 55, 0.5),
            0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .brand-card::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--accent-primary), #F4D03F, var(--accent-primary));
        border-radius: 9px;
        opacity: 0.55;
        z-index: -1;
        filter: blur(7px);
        animation: brandGlow 2s ease-in-out infinite;
    }

    .brand-card::after {
        display: none;
    }

    .brand-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.3125rem;
        margin-bottom: 0.25rem;
        padding-bottom: 0.25rem;
        border-bottom: 1px solid var(--border-color-light);
        width: 100%;
    }

    .brand-title-section {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .brand-name {
        font-size: 1.7rem;
        margin-bottom: 0;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        text-shadow: 
            0 2px 8px rgba(212, 175, 55, 0.5),
            0 0 12px rgba(212, 175, 55, 0.3);
        letter-spacing: -0.01em;
        flex: 1;
        min-width: 0;
    }

    .position-badge {
        font-size: 0.725rem;
        padding: 0.25rem 0.5rem;
        min-width: 36px;
        font-weight: 900;
        background: linear-gradient(135deg, var(--accent-primary) 0%, #F4D03F 50%, var(--accent-primary-hover) 100%);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.25);
        box-shadow: 
            0 0 8px rgba(212, 175, 55, 0.5),
            0 2px 8px rgba(212, 175, 55, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
        text-align: center;
        border-radius: 5px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .rating {
        padding: 0.2rem 0.5rem;
        margin-bottom: 0;
        background: rgba(212, 175, 55, 0.15);
        border: none;
        border-radius: 3px;
        display: inline-flex;
        align-items: baseline;
        flex-shrink: 0;
        align-self: flex-start;
    }

    .rating-value {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--accent-primary);
    }

    .rating-max {
        font-size: 0.875rem;
        font-weight: 600;
    }

    .brand-description {
        font-size: 0.6625rem;
        line-height: 1.3;
        padding-left: 0.375rem;
        margin-bottom: 0.3125rem;
        background: transparent;
        border-left: 2px solid var(--accent-primary);
        border-radius: 0;
        font-weight: 500;
    }

    .brand-features {
        gap: 0.0625rem;
        margin-bottom: 0.3125rem;
    }

    .brand-features li {
        padding: 0.125rem 0.25rem;
        padding-left: 1rem;
        font-size: 0.6625rem;
        background: transparent;
        border: none;
        border-radius: 0;
        min-height: 22px;
        display: flex;
        align-items: center;
        font-weight: 500;
        line-height: 1.28;
        position: relative;
    }

    .brand-features li::before {
        content: "✓";
        position: absolute;
        left: 0.25rem;
        color: var(--rg-green);
        font-weight: 800;
        font-size: 0.8em;
        transition: transform var(--transition-base);
    }

    .brand-features li:hover::before {
        transform: scale(1.2) rotate(5deg);
    }

    .cta-button {
        padding: 0.6875rem 1.25rem;
        font-size: 0.85rem;
        min-height: 42px;
        border-radius: 7px;
        margin-bottom: 0.25rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 
            0 0 12px rgba(212, 175, 55, 0.5),
            0 3px 10px rgba(212, 175, 55, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
        font-weight: 900;
        letter-spacing: 0.02em;
        background: linear-gradient(135deg, var(--accent-primary) 0%, #F4D03F 50%, var(--accent-primary-hover) 100%);
        border: 2px solid rgba(255, 255, 255, 0.2);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

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

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        box-shadow: 
            0 0 18px rgba(212, 175, 55, 0.6),
            0 4px 12px rgba(212, 175, 55, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .cta-button:active {
        transform: translateY(0);
        box-shadow: 
            0 0 12px rgba(212, 175, 55, 0.5),
            0 2px 8px rgba(212, 175, 55, 0.4);
    }

    .affiliate-disclosure {
        font-size: 0.5375rem;
        margin-top: 0;
        padding-top: 0.4375rem;
        border-top: 1px solid var(--border-color-light);
        text-align: center;
        color: var(--text-secondary);
        font-weight: 500;
        line-height: 1.3;
    }

    .rg-block {
        padding: 0.75rem;
        margin: 0.875rem 0;
        border-radius: 5px;
        border-left: 3px solid var(--rg-green);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        background: rgba(16, 185, 129, 0.05);
    }

    .rg-block h2 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .rg-block p {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .rg-block p strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .rg-links {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .rg-links a {
        padding: 0.625rem 0.875rem;
        font-size: 0.775rem;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 600;
        background-color: rgba(16, 185, 129, 0.1);
        border-radius: 4px;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    footer {
        padding: 1rem 0;
        margin-top: 1.25rem;
        border-top: 2px solid rgba(212, 175, 55, 0.2);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-section {
        padding: 0.625rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        color: var(--accent-primary);
        font-weight: 800;
    }

    .footer-section ul {
        margin: 0;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 0.4375rem;
    }

    .footer-section a {
        font-size: 0.8125rem;
        padding: 0.5625rem 0.625rem;
        min-height: 42px;
        display: flex;
        align-items: center;
        color: var(--text-primary);
        background: rgba(212, 175, 55, 0.05);
        border-radius: 5px;
        transition: all var(--transition-base);
        border: 1px solid transparent;
    }

    .footer-section a:hover,
    .footer-section a:active {
        color: var(--accent-primary);
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.3);
        padding-left: 0.875rem;
        text-decoration: none;
        transform: translateX(3px);
    }

    .footer-bottom {
        padding-top: 0.875rem;
        font-size: 0.7rem;
        line-height: 1.45;
        color: var(--text-secondary);
        margin-top: 0.625rem;
    }

    .page-content {
        padding: 0 0.5rem;
    }

    .page-content section {
        margin-bottom: 0.875rem;
    }

    .page-content ul,
    .page-content ol {
        margin-left: 0.875rem;
        padding-left: 0.5rem;
    }

    .page-content li {
        margin-bottom: 0.5rem;
        line-height: 1.45;
    }

    .cookie-banner {
        padding: 0.75rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.625rem;
    }

    .cookie-banner-text {
        font-size: 0.775rem;
        line-height: 1.4;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-button {
        width: 100%;
        padding: 0.75rem 1rem;
        min-height: 40px;
        font-size: 0.875rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    a, button {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    }

    .cta-button:hover {
        background-color: var(--accent-primary);
    }

    nav a:hover {
        color: var(--text-primary);
    }
}

@supports (padding: max(0px)) {
    header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    footer {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}

@media print {
    .cookie-banner,
    nav,
    .cta-button {
        display: none;
    }
}

