/* RUNA CASINO - Unique Casino Website Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.runa-container p {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.runa-container h3 {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

/* Header */
.runa-header {
    background: #0a0a0a;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #ffef00;
    box-shadow: 0 4px 20px rgba(255, 239, 0, 0.4);
}

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

.runa-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.runa-logo-text {
    font-size: 3rem;
    font-weight: 900;
    color: #ffef00;
    text-shadow: 0 0 20px rgba(255, 239, 0, 0.8);
    letter-spacing: 3px;
    position: relative;
}

/* Убрано зачеркивание логотипа */

.runa-logo-subtitle {
    font-size: 0.9rem;
    color: #FFA500;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: -5px;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
}

.runa-header-nav {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.runa-header nav a,
.runa-header-nav a,
.runa-header .runa-nav-link,
.runa-nav-link {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
    border: none !important;
    outline: none !important;
    margin: 0 1.5rem !important;
}

.runa-header nav a:hover,
.runa-header-nav a:hover,
.runa-header .runa-nav-link:hover,
.runa-nav-link:hover {
    color: #ffef00 !important;
    background: rgba(255, 239, 0, 0.1);
    text-shadow: 0 0 10px rgba(255, 239, 0, 0.6);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.runa-header nav a:visited,
.runa-header-nav a:visited,
.runa-header .runa-nav-link:visited,
.runa-nav-link:visited {
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.runa-header nav a:active,
.runa-header-nav a:active,
.runa-header .runa-nav-link:active,
.runa-nav-link:active {
    color: #ffef00 !important;
    text-decoration: none !important;
}

.runa-header nav a:link,
.runa-header-nav a:link,
.runa-header .runa-nav-link:link,
.runa-nav-link:link {
    color: #FFFFFF !important;
    text-decoration: none !important;
}

/* Mobile Menu Toggle Button */
.runa-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.runa-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffef00;
    transition: opacity 0.3s ease;
    border-radius: 2px;
}

.runa-mobile-menu-toggle.active span:nth-child(1) {
    opacity: 1;
}

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

.runa-mobile-menu-toggle.active span:nth-child(3) {
    opacity: 1;
}

@media (max-width: 768px) {
    .runa-mobile-menu-toggle {
        display: flex;
    }
    
    .runa-header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a0a0a !important;
        background-color: #0a0a0a !important;
        flex-direction: column;
        padding: 2rem 0;
        margin: 0;
        gap: 0;
        border-top: 2px solid #ffef00;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 1);
        transform: translateX(-100%);
        transition: transform 0.3s ease, top 0.3s ease;
        z-index: 1001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        opacity: 1 !important;
    }
    
    .runa-header-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0a0a0a;
        z-index: -1;
    }
    
    .runa-header-nav.active {
        transform: translateX(0);
        top: 90px;
        max-height: calc(100vh - 90px);
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0a0a0a;
        z-index: 998;
        pointer-events: none;
        transition: none !important;
    }
    
    .runa-nav-link {
        display: block;
        padding: 1rem 2rem;
        margin: 0 !important;
        font-size: 1.1rem;
        border-bottom: 1px solid #333;
        width: 100%;
        text-align: left;
    }
    
    .runa-nav-link:last-child {
        border-bottom: none;
    }
    
    .runa-nav-link:hover {
        background: rgba(255, 239, 0, 0.1);
    }
    
    .runa-cta-button {
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .runa-header-nav {
        top: 65px;
        background: #0a0a0a !important;
        background-color: #0a0a0a !important;
        opacity: 1 !important;
    }
    
    .runa-header-nav.active {
        top: 90px;
    }
    
    .runa-nav-link {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .runa-logo-text {
        font-size: 2rem;
    }
    
    .runa-cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

.runa-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.runa-features-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.runa-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #ffef00;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 239, 0, 0.6);
}

.runa-numbered-list {
    margin: 20px 0;
}

.runa-numbered-list ol {
    list-style: none;
    counter-reset: item;
    padding: 0;
}

.runa-numbered-list li {
    counter-increment: item;
    position: relative;
    padding: 15px 20px;
    margin-bottom: 15px;
    color: #E0E0E0;
    font-size: 1.1rem;
    line-height: 1.6;
    background: #1a1a1a;
    border-radius: 15px;
    border-left: 4px solid #ffef00;
}

.runa-numbered-list li::before {
    display: none;
}

.runa-cta-button {
    background: #ffef00;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 239, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.runa-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;
}

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

.runa-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 239, 0, 0.6);
    background: #FFA500;
}

/* Fixed page subnav (under header) */
:root {
    --runa-header-h: 90px;
    --runa-subnav-h: 34px;
}

body.runa-has-subnav {
    padding-top: calc(var(--runa-header-h) + var(--runa-subnav-h));
}

.runa-subnav {
    position: fixed;
    top: var(--runa-header-h);
    left: 0;
    right: 0;
    z-index: 999;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 239, 0, 0.28);
    padding: 0.4rem 0;
}

.runa-subnav-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 0.9rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.runa-subnav-inner::-webkit-scrollbar {
    display: none;
}

.runa-subnav a {
    color: #C8C8C8;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 0.2rem 0.1rem;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    transition: color 0.2s ease;
}

.runa-subnav a:hover,
.runa-subnav a:focus {
    color: #ffef00;
    text-decoration: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.runa-section-title,
.runa-faq-section,
[id] {
    scroll-margin-top: calc(var(--runa-header-h) + var(--runa-subnav-h) + 12px);
}

.runa-nav-link--active {
    color: #ffef00 !important;
}

/* Hero Section */
.runa-hero {
    background: #0a0a0a;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.runa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="runa-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ffef00" opacity="0.15"/><circle cx="80" cy="80" r="1.5" fill="%23ffef00" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="%23FFA500" opacity="0.1"/><circle cx="10" cy="90" r="0.8" fill="%23FFA500" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23runa-grain)"/></svg>');
    opacity: 0.4;
}

/* Hero with image underlay — all pages */
.runa-hero--banner {
    padding: 48px 0 72px;
    text-align: left;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.runa-hero--banner::before {
    display: none;
}

.runa-hero-banner {
    position: absolute;
    inset: 0;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.runa-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 4, 16, 0.9) 0%, rgba(6, 4, 16, 0.72) 38%, rgba(6, 4, 16, 0.28) 68%, rgba(6, 4, 16, 0.15) 100%),
        linear-gradient(180deg, rgba(6, 4, 16, 0.4) 0%, rgba(6, 4, 16, 0.12) 45%, rgba(6, 4, 16, 0.78) 100%);
}

.runa-hero--banner .runa-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.runa-hero--banner .runa-hero-content {
    max-width: 640px;
}

.runa-hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFB800;
    margin-bottom: 0.85rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.runa-hero--banner h1 {
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65), 0 0 24px rgba(255, 239, 0, 0.25);
}

.runa-hero-lead {
    font-size: 1rem;
    color: #E8E8E8;
    margin-bottom: 1.75rem;
    max-width: 520px;
    line-height: 1.55;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.runa-hero--banner .runa-hero-buttons {
    justify-content: flex-start;
}

.runa-hero-content {
    position: relative;
    z-index: 1;
}

.runa-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #ffef00;
    text-shadow: 0 0 30px rgba(255, 239, 0, 0.5);
}

.runa-hero p {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.runa-hero-description {
    margin: 0 0 3rem 0;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.runa-hero-description p {
    font-size: 1.1rem;
    color: #D0D0D0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.runa-hero-description p:last-child {
    margin-bottom: 0;
}

.runa-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.runa-hero-subtitle {
    font-size: 1.3rem;
    color: #E0E0E0;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.8;
    clear: both;
}

.runa-btn-secondary {
    background: #2a2a2a;
    color: #FFFFFF;
    padding: 15px 30px;
    border: 2px solid #ffef00;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 239, 0, 0.2);
}

.runa-btn-secondary:hover {
    background: #ffef00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 239, 0, 0.4);
}

/* Main Content */
.runa-main {
    padding: 40px 0;
}

.runa-section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffef00;
    text-shadow: 0 0 20px rgba(255, 239, 0, 0.3);
}

.runa-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.runa-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #ffef00;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.runa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #ffef00;
}

.runa-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 239, 0, 0.3);
    border-color: #FFA500;
}

.runa-card-icon {
    font-size: 2.5rem;
    color: #ffef00;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 239, 0, 0.5);
    flex-shrink: 0;
}

.runa-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
    flex-shrink: 0;
    min-height: 3.2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

.runa-card p {
    color: #D0D0D0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    flex-shrink: 0;
}

.runa-card-button {
    background: #2a2a2a;
    color: #FFFFFF;
    padding: 12px 25px;
    border: 2px solid #ffef00;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 239, 0, 0.2);
    margin-top: auto;
    align-self: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.runa-card-button:hover {
    background: #ffef00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 239, 0, 0.4);
}

/* Payment Methods */

.runa-payment-table-container {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #ffef00;
    overflow-x: auto;
}

.runa-payment-table {
    width: 100%;
    border-collapse: collapse;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.runa-payment-table th {
    background: transparent;
    color: #ffef00;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 2px solid #ffef00;
}

.runa-payment-table th:first-child {
    border-radius: 10px 0 0 0;
    width: 30%;
}

.runa-payment-table th:last-child {
    border-radius: 0 10px 0 0;
    width: 70%;
}

.runa-payment-table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.runa-payment-table tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.runa-payment-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #333;
    color: #D0D0D0;
    vertical-align: top;
}

.runa-payment-table td:first-child {
    width: 30%;
    font-weight: bold;
}

.runa-payment-table td:last-child {
    width: 70%;
}

.runa-payment-table tr:hover {
    background: #2a2a2a;
    transition: all 0.3s ease;
}

.runa-payment-table tr:last-child td {
    border-bottom: none;
}

.runa-payment-info {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #FFA500;
    text-align: center;
}

.runa-payment-info p {
    color: #D0D0D0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.runa-payment-info p:last-child {
    margin-bottom: 0;
}

/* VIP Table */
.runa-vip-table-container {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #ffef00;
    overflow-x: auto;
}

.runa-vip-table {
    width: 100%;
    border-collapse: collapse;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.runa-vip-table th {
    background: transparent;
    color: #ffef00;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 2px solid #ffef00;
}

.runa-vip-table th:first-child {
    border-radius: 10px 0 0 0;
    width: 30%;
}

.runa-vip-table th:last-child {
    border-radius: 0 10px 0 0;
    width: 70%;
}

.runa-vip-table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.runa-vip-table tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.runa-vip-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #333;
    color: #D0D0D0;
    vertical-align: top;
}

.runa-vip-table td:first-child {
    width: 30%;
    font-weight: bold;
}

.runa-vip-table td:last-child {
    width: 70%;
}

.runa-vip-table tr:hover {
    background: #2a2a2a;
    transition: all 0.3s ease;
}

.runa-vip-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.runa-feature-list {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #ffef00;
}

.runa-feature-list h3 {
    color: #ffef00;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.runa-feature-list ul {
    list-style: none;
    padding: 0;
}

.runa-feature-list li {
    color: #D0D0D0;
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 2rem;
}

.runa-feature-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #ffef00;
    font-size: 1.2rem;
}

.runa-feature-list li:last-child {
    border-bottom: none;
}

.runa-numbered-list {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #FFA500;
}

.runa-numbered-list h3 {
    color: #FFA500;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.runa-numbered-list ol {
    color: #D0D0D0;
    padding-left: 2rem;
}

.runa-numbered-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
}

.runa-numbered-list li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.runa-faq-section {
    background: #0a0a0a;
    padding: 40px 0;
}

.runa-faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 2px solid #ffef00;
    overflow: hidden;
}

.runa-faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.runa-faq-question:hover {
    background: #2a2a2a;
}

.runa-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #D0D0D0;
    display: none;
    font-size: 1.1rem;
}

.runa-faq-answer.active {
    display: block;
}

.runa-faq-icon {
    color: #ffef00;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.runa-faq-icon.rotated {
    transform: rotate(180deg);
}

/* Footer */
.runa-footer {
    background: #1a1a1a;
    padding: 60px 0 40px;
    border-top: 3px solid #ffef00;
}

.runa-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.runa-footer-section h3 {
    color: #ffef00;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(255, 239, 0, 0.3);
    text-align: center;
}

.runa-footer-section a {
    color: #D0D0D0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.runa-footer-section a:hover {
    color: #ffef00;
    transform: translateX(10px);
}

.runa-footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid #333;
    color: #D0D0D0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .runa-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .runa-footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .runa-footer-section {
        min-width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 900px) {
    .runa-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --runa-header-h: 78px;
        --runa-subnav-h: 32px;
    }

    .runa-subnav {
        padding: 0.35rem 0;
    }

    .runa-subnav-inner {
        justify-content: flex-start;
        gap: 0.25rem 0.7rem;
    }

    .runa-subnav a {
        font-size: 0.68rem;
    }

    .runa-hero--banner {
        min-height: 360px;
        padding: 36px 0 56px;
        text-align: center;
    }

    .runa-hero-banner {
        background-position: center 30%;
    }

    .runa-hero-overlay {
        background:
            linear-gradient(180deg, rgba(6, 4, 16, 0.7) 0%, rgba(6, 4, 16, 0.78) 50%, rgba(6, 4, 16, 0.9) 100%),
            linear-gradient(90deg, rgba(6, 4, 16, 0.5) 0%, rgba(6, 4, 16, 0.2) 100%);
    }

    .runa-hero--banner .runa-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .runa-hero--banner h1 {
        text-align: center;
        font-size: 1.85rem;
    }

    .runa-hero-lead {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .runa-hero--banner .runa-hero-buttons {
        justify-content: center;
    }

    .runa-hero h1 {
        font-size: 2.5rem;
    }

    .runa-hero p {
        font-size: 1.1rem;
    }

    .runa-hero-description p {
        font-size: 1rem;
        text-align: left;
    }

    .runa-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .runa-section-title {
        font-size: 2.5rem;
    }

    .runa-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .runa-container {
        padding: 0 15px;
    }

    .runa-payment-table {
        font-size: 0.9rem;
    }

    .runa-payment-table th,
    .runa-payment-table td {
        padding: 1rem 0.5rem;
    }

    .runa-payment-intro,
    .runa-payment-table-container,
    .runa-payment-info {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .runa-hero {
        padding: 120px 0 80px;
    }

    .runa-hero h1 {
        font-size: 2rem;
    }

    .runa-hero-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .runa-card {
        padding: 1.5rem;
    }

    .runa-payment-table {
        font-size: 0.8rem;
    }

    .runa-payment-table th,
    .runa-payment-table td {
        padding: 0.8rem 0.3rem;
    }

    .runa-payment-intro,
    .runa-payment-table-container,
    .runa-payment-info {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
}

/* Animations and Transitions */
.runa-fade-in {
    animation: runaFadeIn 0.8s ease-out forwards;
}

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

.runa-card {
    animation: runaCardAppear 0.6s ease-out forwards;
}

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

/* Hover Effects */
.runa-card:hover .runa-card-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.runa-card:hover h3 {
    color: #ffef00;
    transition: color 0.3s ease;
}

/* Logo Animation */
.runa-logo:hover .runa-logo-text {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.runa-logo:hover .runa-logo-subtitle {
    color: #E91E63;
    transition: color 0.3s ease;
}

/* Button Animations */
.runa-cta-button:hover,
.runa-btn-secondary:hover,
.runa-card-button:hover {
    transform: translateY(-3px) scale(1.05);
    transition: all 0.3s ease;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Focus States */
.runa-cta-button:focus,
.runa-btn-secondary:focus,
.runa-card-button:focus {
    outline: 3px solid #ffef00;
    outline-offset: 3px;
}

/* Loading States */
.runa-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success States */
.runa-card.success {
    border-color: #4CAF50;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
}
