* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0e27 0%, #1a0d2e 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(77, 166, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 77, 166, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 100%);
    padding: 12px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(77, 166, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(77, 166, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;  /* zwiększ z 48px na 60px */
    width: auto;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(77, 166, 255, 0.3);
    transition: all 0.3s ease;
}

.logo-img:hover {
    box-shadow: 0 0 25px rgba(77, 166, 255, 0.5);
    transform: scale(1.05);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4da6ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

header nav ul li a:hover {
    color: #4da6ff;
}

.panel-btn {
    background: linear-gradient(135deg, #4da6ff, #0066ff);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(77, 166, 255, 0.3);
}

.panel-btn:hover {
    box-shadow: 0 0 25px rgba(77, 166, 255, 0.6);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px;
    position: relative;
    z-index: 1;
    gap: 60px;
}

.hero-content {
    flex: 1;
    animation: slideInLeft 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 1px solid rgba(77, 166, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: #4da6ff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #4da6ff, #00ffff, #ff77a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: #aaaaaa;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 14px 30px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #4da6ff, #0066ff);
    color: white;
    box-shadow: 0 0 20px rgba(77, 166, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(77, 166, 255, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(77, 166, 255, 0.3);
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #4da6ff;
    background: rgba(77, 166, 255, 0.1);
}

.hero-animation {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cube, .sphere, .pyramid {
    position: absolute;
    opacity: 0.8;
}

.cube {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4da6ff, #0066ff);
    border-radius: 10px;
    animation: cube-rotate 8s infinite linear;
    box-shadow: 0 0 30px rgba(77, 166, 255, 0.5);
}

.sphere {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), #ff77a6);
    border-radius: 50%;
    animation: sphere-rotate 12s infinite linear;
    box-shadow: 0 0 40px rgba(255, 119, 166, 0.5);
    top: 50px;
    left: -50px;
}

.pyramid {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid #00ffaa;
    animation: pyramid-rotate 10s infinite linear;
    filter: drop-shadow(0 0 30px rgba(0, 255, 170, 0.5));
    top: 80px;
    right: -50px;
}

@keyframes cube-rotate {
    0% { transform: rotateX(0) rotateY(0); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes sphere-rotate {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes pyramid-rotate {
    0% { transform: rotate(0deg) translateX(0); }
    50% { transform: rotate(180deg) translateX(20px); }
    100% { transform: rotate(360deg) translateX(0); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* FEATURES SECTION */
.features-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.05) 0%, rgba(0, 255, 255, 0.02) 100%);
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(77, 166, 255, 0.1);
    border-bottom: 1px solid rgba(77, 166, 255, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%);
    border: 1px solid rgba(77, 166, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    border-color: #4da6ff;
    box-shadow: 0 10px 30px rgba(77, 166, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #4da6ff;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: #aaaaaa;
    font-size: 14px;
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a0d2e 100%);
    position: relative;
    z-index: 1;
}

.reviews-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #4da6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #aaaaaa;
    margin-bottom: 50px;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%);
    border: 1px solid rgba(77, 166, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease;
}

.review-card:hover {
    border-color: #4da6ff;
    box-shadow: 0 10px 30px rgba(77, 166, 255, 0.2);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    font-size: 32px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 166, 255, 0.1);
    border-radius: 50%;
}

.review-name {
    font-size: 14px;
    font-weight: 700;
    color: #4da6ff;
}

.review-role {
    font-size: 12px;
    color: #aaaaaa;
}

.review-rating {
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-text {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.05) 0%, rgba(0, 255, 255, 0.02) 100%);
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(77, 166, 255, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #4da6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%);
    border: 1px solid rgba(77, 166, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    animation: slideInUp 0.6s ease;
}

.faq-question {
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(77, 166, 255, 0.1);
}

.faq-question:hover {
    background: rgba(77, 166, 255, 0.05);
}

.faq-icon {
    font-size: 18px;
}

.faq-question h3 {
    flex: 1;
    color: #ffffff;
    font-size: 14px;
}

.faq-toggle {
    font-size: 24px;
    color: #4da6ff;
    transition: all 0.3s ease;
    font-weight: 700;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    color: #ff77a6;
}

.faq-answer {
    display: none;
    padding: 16px;
    color: #cccccc;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 100%);
    border-top: 1px solid rgba(77, 166, 255, 0.1);
    padding: 40px 50px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: #4da6ff;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section p {
    color: #aaaaaa;
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.footer-section ul li a:hover {
    color: #4da6ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(77, 166, 255, 0.1);
    color: #666666;
    font-size: 12px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 30px auto;
    padding: 35px;
    border: 2px solid #4da6ff;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 0 60px rgba(77, 166, 255, 0.4);
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #4da6ff;
}

.modal-content h2 {
    color: #4da6ff;
    margin-bottom: 25px;
    font-size: 28px;
}

.order-package {
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    border: 1px solid #4da6ff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.package-name {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 5px;
}

.package-selected {
    color: #4da6ff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-price {
    color: #ff77a6;
    font-size: 18px;
    font-weight: 600;
}

.order-steps {
    margin: 25px 0;
}

.order-steps h3 {
    color: #4da6ff;
    margin-bottom: 15px;
    font-size: 16px;
}

.order-steps ol {
    list-style: decimal;
    padding-left: 20px;
}

.order-steps li {
    margin-bottom: 12px;
    color: #cccccc;
    font-size: 13px;
}

.order-steps strong {
    color: #4da6ff;
}

.order-steps p {
    color: #aaaaaa;
    font-size: 12px;
    margin-top: 3px;
}

.discord-invitation {
    text-align: center;
    margin: 25px 0;
}

.discord-btn {
    display: inline-block;
    padding: 10px 35px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    box-shadow: 0 0 35px rgba(88, 101, 242, 0.8);
    transform: translateY(-2px);
}

.alternative-contact {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(77, 166, 255, 0.2);
    color: #aaaaaa;
    font-size: 13px;
}

.alternative-contact strong {
    color: #4da6ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 12px 20px;
    }

    header nav ul {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-animation {
        height: 250px;
    }

    .features-section,
    .reviews-section,
    .faq-section {
        padding: 60px 20px;
    }

    .reviews-section h2,
    .faq-section h2 {
        font-size: 32px;
    }

    .modal-content {
        margin: 50px 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 10px;
    }

    .logo-img {
        height: 36px;
    }

    .logo-text {
        font-size: 16px;
    }

    header nav ul {
        gap: 8px;
    }

    header nav ul li a {
        font-size: 12px;
    }

    .panel-btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .features-section,
    .reviews-section,
    .faq-section {
        padding: 40px 15px;
    }

    .faq-container {
        padding: 0;
    }
}