/* 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;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 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: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    letter-spacing: 3px;
    position: relative;
}

.runa-logo-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    height: 4px;
    background: #FFA500;
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
}

.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-cta-button {
    background: #FFD700;
    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, 215, 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, 215, 0, 0.6);
    background: #FFA500;
}

/* 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="%23FFD700" opacity="0.15"/><circle cx="80" cy="80" r="1.5" fill="%23FFD700" 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;
}

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

.runa-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 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 #FFD700;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.runa-btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 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: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 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 #FFD700;
    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: #FFD700;
}

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

.runa-card-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 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 #FFD700;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    margin-top: auto;
    align-self: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

/* Payment Methods */

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

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

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

.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 #FFD700;
    overflow-x: auto;
}

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

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

.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 #FFD700;
}

.runa-feature-list h3 {
    color: #FFD700;
    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: #FFD700;
    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 #FFD700;
    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: #FFD700;
    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 #FFD700;
}

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

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

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

.runa-footer-section a:hover {
    color: #FFD700;
    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: 900px) {
    .runa-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .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: #FFD700;
    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 #FFD700;
    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);
}
