:root {
    --gold-light: #f5e7a3;
    --gold: #e6c955;
    --gold-dark: #c9a431;
    --red: #e55a5a;
    --dark-bg: #1a1622;
    --black: #0d0a12;
}

.fullscreen-bg {
    position: relative;
    min-height: 100vh;
    background-image: url('src/stadium.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.fullscreen-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 10, 18, 0.85);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.left-section {
    padding: 30px;
    background: rgba(26, 22, 34, 0.8);
    border-radius: 15px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 25px rgba(201, 164, 49, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s ease;
}

.winners-heading {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    text-transform: uppercase;
    text-shadow: 
        0 0 15px rgba(201, 164, 49, 0.8), 
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 1px #ffffff;
    -webkit-text-stroke: 1px black;
    margin-bottom: 20px;
}

.winners-desc {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(201, 164, 49, 0.7);
}

.feature-icon i {
    color: var(--black);
    font-size: 24px;
}

.feature-text h3 {
    margin: 0;
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(201, 164, 49, 0.5);
    align-self: flex-start;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(201, 164, 49, 0.8);
    color: var(--black);
}

.how-it-works-section {
    background-color: rgba(10, 8, 15, 0.97);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--gold-dark);
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(201, 164, 49, 0.1), transparent);
    pointer-events: none;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 50px;
    text-shadow: 
        0 0 15px rgba(201, 164, 49, 0.8), 
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 1px #ffffff;
    -webkit-text-stroke: 1px black;
}

.how-it-works-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-card {
    background: rgba(26, 22, 34, 0.8);
    border-radius: 15px;
    border: 1px solid var(--gold);
    padding: 30px;
    box-shadow: 0 0 25px rgba(201, 164, 49, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.info-card.show {
    opacity: 1;
    transform: translateY(0);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(201, 164, 49, 0.6);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(201, 164, 49, 0.7);
}

.info-icon i {
    color: var(--black);
    font-size: 32px;
}

.info-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.info-text {
    color: var(--gold-light);
    font-size: 1rem;
    line-height: 1.6;
}

.stats-section-container {
    background-color: rgba(10, 8, 15, 0.97);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}

.stats-section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(201, 164, 49, 0.1), transparent);
    pointer-events: none;
}

.stats-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 50px;
    text-shadow: 
        0 0 15px rgba(201, 164, 49, 0.8), 
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 1px #ffffff;
    -webkit-text-stroke: 1px black;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    background: rgba(26, 22, 34, 0.8);
    border: 1px solid var(--gold);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(201, 164, 49, 0.3);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(201, 164, 49, 0.6);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 
        0 0 15px rgba(201, 164, 49, 0.6), 
        0 0 5px rgba(255, 255, 255, 0.4);
    -webkit-text-stroke: 1px black;
}

.stat-label {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.right-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.membership-card {
    width: 100%;
    max-width: 450px;
    position: relative;
    padding: 40px 30px;
    border-radius: 15px;
    background: rgba(26, 22, 34, 0.8);
    border: 1px solid var(--gold);
    box-shadow: 
        0 0 30px rgba(201, 164, 49, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s ease;
    position: relative;
}

.sale-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--red);
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: 0 0 10px rgba(229, 90, 90, 0.6);
    animation: pulse 1.5s infinite;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 40px rgba(201, 164, 49, 0.6),
        0 15px 35px rgba(0, 0, 0, 0.3);
}

.membership-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--red);
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: 0 0 10px rgba(229, 90, 90, 0.6);
}

.membership-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(201, 164, 49, 0.5);
    font-weight: bold;
}

.membership-price {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.membership-price .original-price {
    font-size: 1.5rem;
    color: var(--gold-light);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 5px;
    position: relative;
}

.membership-price .original-price::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 2px;
    background-color: var(--red);
    transform: rotate(-5deg);
}

.membership-price .price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    text-shadow: 0 0 5px rgba(201, 164, 49, 0.5);
    margin-right: 0;
}

.membership-price .price-period {
    color: var(--gold-light);
    font-size: 1rem;
    align-self: center;
    margin-top: 5px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--gold-light);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 5px;
    position: relative;
}

.original-price::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 2px;
    background-color: var(--red);
    transform: rotate(-5deg);
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    text-shadow: 0 0 5px rgba(201, 164, 49, 0.5);
    margin-right: 5px;
}

.price-period {
    color: var(--gold-light);
    font-size: 1rem;
    align-self: flex-end;
    margin-top: -10px;
}

.membership-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.membership-features li {
    color: var(--gold-light);
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 164, 49, 0.2);
    display: flex;
    align-items: center;
}

.membership-features li:last-child {
    border-bottom: none;
}

.membership-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1.1rem;
}

.membership-button {
    display: inline-block;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(201, 164, 49, 0.5);
    width: 100%;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.membership-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(201, 164, 49, 0.8);
    color: var(--black);
}

.testimonials-section {
    background-color: rgba(10, 8, 15, 0.97);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--gold-dark);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(201, 164, 49, 0.1), transparent);
    pointer-events: none;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    position: relative;
}

.testimonials-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
    min-width: calc(33.333% - 30px);
    margin: 0 15px;
    background: rgba(26, 22, 34, 0.8);
    border-radius: 15px;
    border: 1px solid var(--gold);
    padding: 25px;
    box-shadow: 0 0 25px rgba(201, 164, 49, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(201, 164, 49, 0.6);
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.verified-badge {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    align-self: flex-start;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.verified-badge i {
    margin-right: 5px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-author {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonial-text {
    color: var(--gold-light);
    font-size: 1rem;
    line-height: 1.6;
}

.carousel-arrow {
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 0 15px rgba(201, 164, 49, 0.7);
    transition: all 0.3s ease;
    margin: 0 15px;
}

.carousel-arrow:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(201, 164, 49, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--gold);
    box-shadow: 0 0 10px rgba(201, 164, 49, 0.7);
}

.about-us-section {
    background-color: rgba(10, 8, 15, 0.97);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(201, 164, 49, 0.1), transparent);
    pointer-events: none;
}

.about-us-container {
    display: flex !important;
    flex-direction: row !important; 
    gap: 30px;
    align-items: stretch;
}

.about-us-container .col-lg-7,
.about-us-container .col-lg-5 {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.about-us-content,
.about-us-image-container {
    height: 100%;
    flex: 1;
}

.about-us-content {
    background: rgba(26, 22, 34, 0.8);
    border-radius: 15px;
    border: 1px solid var(--gold);
    padding: 30px;
    box-shadow: 0 0 25px rgba(201, 164, 49, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
    animation-delay: 0.2s;
    display: flex;
    flex-direction: column;
}

.about-us-content .section-heading {
    text-align: left;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 
        0 0 15px rgba(201, 164, 49, 0.8), 
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 1px #ffffff;
    -webkit-text-stroke: 1px black;
}

.about-us-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(201, 164, 49, 0.5);
}

.about-us-text {
    color: var(--gold-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-us-content-wrapper {
    flex: 1;
}

.about-us-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: auto;
    padding-top: 25px;
    justify-content: space-between;
}

.highlight-item {
    display: flex;
    align-items: center;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 180px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    box-shadow: 0 0 15px rgba(201, 164, 49, 0.7);
}

.highlight-icon i {
    color: var(--black);
    font-size: 20px;
}

.highlight-text {
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 600;
}

.highlight-item:last-child .highlight-text {
    word-break: normal;
    white-space: normal;
    line-height: 1.2;
    max-width: 140px;
}

.about-us-image-container {
    position: relative;
    border-radius: 15px;
    overflow: visible; /* visible a hidden helyett, hogy ne vágjon le semmiből */
    border: none; /* Eltávolítjuk a keretet */
    box-shadow: none; /* Eltávolítjuk az árnyékot */
    min-height: 400px;
    background: transparent; /* Átlátszó háttér */
}

.about-us-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ez biztosítja, hogy a teljes kép látszódjon */
    background-color: transparent;
}

.about-us-image-container:hover .about-us-image {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: var(--black);
    margin-top: 0;
    border-top: 1px solid var(--gold-dark);
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .fullscreen-bg {
        padding: 80px 0;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .left-section, .right-section {
        margin-bottom: 40px;
    }
    
    .winners-heading {
        font-size: 2.5rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
        min-width: calc(50% - 30px);
    }
    
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-us-container {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .about-us-container .col-lg-7,
    .about-us-container .col-lg-5 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .about-us-image-container {
        min-height: 350px;
    }
    
    .about-us-title {
        font-size: 1.6rem;
    }
    
    .about-us-text {
        font-size: 1rem;
    }
    
    .highlight-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .fullscreen-bg {
        padding: 60px 0;
    }
    
    .winners-heading {
        font-size: 2rem;
    }
    
    .winners-desc {
        font-size: 1rem;
    }
    
    .membership-title {
        font-size: 1.8rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .membership-features li {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .cta-button, .membership-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 28px;
    }
    
    .info-title {
        font-size: 1.2rem;
    }
    
    .stats-section-container {
        padding: 50px 0;
    }
    
    .stats-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-box {
        min-width: calc(50% - 20px);
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
        min-width: calc(100% - 30px);
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin: 0 10px;
    }
    
    .about-us-section {
        padding: 50px 0;
    }
    
    .about-us-content {
        padding: 25px;
    }
    
    .about-us-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-us-text {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .about-us-image-container {
        min-height: 300px;
    }
    
    .highlight-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .fullscreen-bg {
        padding: 40px 0;
    }
    
    .left-section, .right-section {
        padding: 20px;
    }
    
    .winners-heading {
        font-size: 1.8rem;
    }
    
    .membership-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 24px;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
    
    .stats-section-container {
        padding: 40px 0;
    }
    
    .stats-heading {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .stats-container {
        gap: 15px;
    }
    
    .stat-box {
        min-width: 100%;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin: 0 5px;
    }
}