/* Alap stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5641FE;
    --primary-dark: #4433cc;
    --primary-light: #f0f0ff;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #f8f9fa;
    --white: #ffffff;
    --shadow-color: rgba(85, 64, 255, 0.2);
    --shadow-color-hover: rgba(85, 64, 255, 0.3);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: url('images/background-pattern.svg');
    background-repeat: repeat;
    font-size: 16px;
}

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

/* Akadálymentes fókusz stílus */
a:focus, button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Promóciós banner */
.promo-banner {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.promo-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-size: 10px 10px;
    z-index: 1;
}

.promo-banner p {
    margin: 0;
    z-index: 2;
}

.promo-banner strong {
    font-weight: 700;
}

.star-icon {
    font-size: 18px;
    animation: twinkle 1.5s infinite alternate;
    z-index: 2;
}

@keyframes twinkle {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}

.banner-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
    transition: all 0.3s;
    z-index: 2;
}

.banner-link:hover {
    color: var(--primary-light);
    text-decoration: none;
}

/* Fejléc */
header {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Fő tartalom */
main {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

/* Hero szekció */
.hero {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Ikonok */
.money-icon, .bonus-icon {
    margin: 20px auto;
    max-width: 100px;
    animation: pulse 2s infinite ease-in-out;
}

.money-icon img, .bonus-icon img {
    width: 100%;
    height: auto;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Ajánlókód doboz */
.code-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-light);
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto 30px;
    max-width: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    width: 100%;
}

.code-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow-color);
}

.code {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.copy-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.copy-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Lépések szekció */
.steps {
    margin-bottom: 50px;
}

h3 {
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
}

h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* CTA szekció */
.cta {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow-color-hover);
}

/* Lábléc */
footer {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    padding: 20px 0;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Speciális ajánlat szekció */
.special-offer {
    margin-bottom: 50px;
    background-color: var(--primary-light);
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.special-offer h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.special-offer h3:after {
    margin: 15px 0 0;
}

.offer-content {
    font-size: 16px;
}

.offer-content p {
    margin-bottom: 15px;
}

.offer-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.offer-details {
    background-color: var(--white);
    border-radius: 6px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.offer-details ul {
    margin: 15px 0 15px 20px;
}

.offer-details li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

/* Eltávolítom a dupla pontot okozó pszeudo-elemet */
/* .offer-details li:before {
    content: '•';
    color: #5540FF;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
} */

.contact-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed var(--primary-color);
    font-style: italic;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    main {
        padding: 25px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .code {
        font-size: 26px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step:hover {
        transform: none;
    }
    
    .special-offer h3 {
        text-align: center;
    }
    
    .special-offer h3:after {
        margin: 15px auto 0;
    }
    
    .offer-details li {
        padding-left: 0;
    }
    
    .promo-banner {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .promo-banner p {
        order: 1;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .star-icon:first-child {
        order: 0;
    }
    
    .banner-link {
        order: 2;
    }
    
    .star-icon:last-child {
        order: 3;
    }
}

@media (max-width: 480px) {
    main {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .code-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .promo-banner {
        padding: 8px 10px;
    }
    
    .star-icon {
        font-size: 16px;
    }
}

/* Akadálymentességi segítők */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Nyomtatási stílusok */
@media print {
    body {
        background-image: none;
        color: black;
    }
    
    main {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .promo-banner, .money-icon, .bonus-icon, .cta {
        display: none;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
    
    .code-box {
        border: 1px solid #ddd;
        background: none;
    }
    
    .step-number {
        border: 1px solid #ddd;
        color: black;
        background: none;
    }
}

/* További infók link stílusok */
.more-info-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    text-align: center;
}

.more-info {
    font-size: 16px;
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 20px;
    background-color: var(--primary-light);
    border: 1px dashed var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.more-info:hover {
    background-color: rgba(86, 65, 254, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.info-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 0 2px;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--primary-dark);
}

.info-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.info-link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Reszponzív beállítások a további infók részhez */
@media (max-width: 768px) {
    .more-info {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .more-info {
        font-size: 13px;
        padding: 6px 12px;
    }
}