/* --- ALAP BEÁLLÍTÁSOK --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

body {
    background-color: #0d0d0d; /* RIX Fekete */
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- VISSZA GOMB --- */
.back-link {
    display: inline-block;
    margin: 20px;
    color: #888;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.back-link:hover {
    color: #cc0000; /* RIX Piros */
    transform: translateX(-5px);
}

/* --- KONTÉNER --- */
.support-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 5px;
    text-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
}

/* --- KÁRTYÁK ELRENDEZÉSE --- */
.cards-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
}

/* --- KÁRTYA DIZÁJN --- */
.support-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 40px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s, border-color 0.3s;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: #cc0000;
}

.support-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
}

.support-card p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 14px;
}

/* --- GOMBOK --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
}

/* PayPal specifikus stílus */
.btn-paypal {
    background: #0070ba; 
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.4);
}
.btn-paypal:hover {
    background: #005ea6;
    transform: scale(1.05);
}

/* Shopify specifikus stílus (Piros) */
.btn-shopify {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: white !important;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
}
.btn-shopify:hover {
    background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%);
    transform: scale(1.05);
}

/* --- ANIMÁCIÓK --- */
.hidden { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s ease-out; 
}
.show { 
    opacity: 1; 
    transform: translateY(0); 
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }