@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    background-image: url('../assets/images/minecraft-bg.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.navbar {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff8c00 !important;
}

.btn-copy {
    background-color: #ff8c00;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background-color: #ff7700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-orange {
    color: #ff8c00;
}

.online-status {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.online-text {
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary-custom {
    background-color: #ff8c00;
    color: #ffffff !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #ff7700;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary-custom {
    background-color: rgba(60, 60, 60, 0.8);
    color: #ffffff !important;
    border: 2px solid rgba(255, 140, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: rgba(70, 70, 70, 0.9);
    border-color: #ff8c00;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
}

.btn-discord {
    background-color: #5865F2;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background-color: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.render-image {
    max-width: 50%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.3));
    margin: 0 auto;
    display: block;
}

.content-section {
    min-height: 80vh;
    padding-top: 120px;
    padding-bottom: 50px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff8c00;
}

.shop-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.shop-card:hover {
    transform: translateY(-10px);
    border-color: #ff8c00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.shop-card.featured {
    border-color: #ff8c00;
    background: rgba(40, 40, 40, 0.9);
}

.badge-featured {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ff8c00;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.shop-card-image {
    text-align: center;
    padding: 1rem 0;
}

.shop-card-image img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-image img {
    transform: scale(1.1);
}

.shop-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
}

.shop-card-header h3 {
    color: #ffffff;
}

.shop-card-body {
    padding-top: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8c00;
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    color: #ffffff;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #ffffff;
}

.features-list i {
    margin-right: 10px;
}

.content-box {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.content-box h3 {
    font-weight: 600;
    color: #ff8c00;
}

.content-box p {
    color: #ffffff;
}

.content-box ul {
    line-height: 2;
    color: #ffffff;
}

.content-box li {
    color: #ffffff;
}

.payment-form {
    max-width: 600px;
    margin: 0 auto;
}

.payment-summary {
    background: rgba(40, 40, 40, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff8c00;
}

.form-label {
    color: #ffffff !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-text {
    font-size: 0.85rem;
    color: #aaaaaa !important;
}

.form-check-label {
    color: #ffffff !important;
}

.payment-info {
    margin-top: 2rem;
}

.voucher-form {
    max-width: 500px;
    margin: 0 auto;
}

.voucher-input,
.form-control {
    background: rgba(50, 50, 50, 0.8) !important;
    border: 2px solid rgba(255, 140, 0, 0.3) !important;
    color: #ffffff !important;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.voucher-input::placeholder,
.form-control::placeholder {
    color: #999999 !important;
    opacity: 1;
}

.voucher-input:focus,
.form-control:focus {
    background: rgba(60, 60, 60, 0.9) !important;
    border-color: #ff8c00 !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3) !important;
    outline: none;
}

/* Wymuszenie białego tekstu w inputach */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Autofill styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(50, 50, 50, 0.8) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

.form-check-input {
    background-color: rgba(50, 50, 50, 0.8) !important;
    border: 2px solid rgba(255, 140, 0, 0.3) !important;
}

.form-check-input:checked {
    background-color: #ff8c00 !important;
    border-color: #ff8c00 !important;
}

.form-check-input:focus {
    border-color: #ff8c00 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25) !important;
}

.voucher-info {
    background: rgba(40, 40, 40, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff8c00;
    color: #ffffff;
}

.voucher-info h4 {
    color: #ff8c00;
}

.voucher-info ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #ffffff;
}

.voucher-info li {
    padding: 0.5rem 0;
    color: #ffffff;
}

.alert {
    color: #ffffff !important;
}

.alert-heading {
    color: #ff8c00 !important;
}

.footer {
    background: rgba(15, 15, 15, 0.95);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
    border-top: 2px solid rgba(255, 140, 0, 0.3);
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 100px;
    margin: 0 2rem;
}

.footer-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff8c00, transparent);
}

.footer p {
    color: #aaaaaa;
    margin: 0;
    font-size: 0.9rem;
}

.footer-title {
    color: #ff8c00;
    font-weight: 600;
    font-size: 1rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff8c00;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: rgba(15, 15, 15, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .btn-copy {
        width: 100%;
        margin-top: 1rem;
    }

    .render-image {
        margin-top: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons button {
        width: 100%;
    }

    .footer-logo-section {
        flex-direction: column;
    }

    .footer-line {
        display: none;
    }

    .footer-logo {
        margin: 1rem 0;
    }

    .shop-card-image img {
        max-width: 120px;
    }
}
.text-muted {
    color: #cccccc !important;
}
span {
    color: #ffffff;
}
.text-orange,
span.text-orange {
    color: #ff8c00 !important;
}
.online-text span,
.payment-summary span {
    color: #ffffff !important;
}
.form-check-label,
.form-check-label span,
.form-label span {
    color: #ffffff !important;
}