* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-footer: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-category: #a855f7;
    --accent-orange: #ff6b35;
    --accent-blue: #a855f7;
    --accent-blue-dark: #9333ea;
    --accent-green: #10b981;
    --star-gold: #ffd700;
    --badge-light-blue: #a855f7;
    --badge-dark-blue: #7c3aed;
    --purple-light: #c084fc;
    --purple-dark: #6d28d9;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated Background Effects */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientMove 25s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5%, 5%) rotate(120deg);
    }
    66% {
        transform: translate(-5%, 5%) rotate(240deg);
    }
}

/* Animated Particles Background */
.light-beams {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    filter: blur(3px);
    animation: float 15s ease-in-out infinite;
}

.light-beam:nth-child(1) {
    width: 300px;
    height: 300px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
}

.light-beam:nth-child(2) {
    width: 200px;
    height: 200px;
    left: 70%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
}

.light-beam:nth-child(3) {
    width: 250px;
    height: 250px;
    left: 50%;
    top: 10%;
    animation-delay: 4s;
    animation-duration: 22s;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
}

.light-beam:nth-child(4) {
    width: 180px;
    height: 180px;
    left: 30%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
}

.light-beam:nth-child(5) {
    width: 220px;
    height: 220px;
    left: 80%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 19s;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
        opacity: 0.55;
    }
}

/* Additional Animated Circles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(168, 85, 247, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(147, 51, 234, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
    animation: pulseBackground 12s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem;
    background: transparent;
}

.header-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}


.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

.discord-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.discord-button:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.discord-button svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: transparent;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
    text-align: left;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.hero-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: scale(1.1);
}

/* Hero Extras */
.hero-stats {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-stat-card {
    flex: 1 1 160px;
    min-width: 160px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.2);
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.hero-stat-card:hover .hero-stat-icon {
    transform: scale(1.05);
}

.hero-stat-icon svg {
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-showcase-card {
    position: relative;
    border-radius: 24px;
    padding: 1.75rem;
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.22), 
                0 14px 45px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(168, 85, 247, 0.28), 
                0 16px 50px rgba(0, 0, 0, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(168, 85, 247, 0.4);
}

.hero-showcase-header,
.hero-showcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-showcase-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.35);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.hero-showcase-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-showcase-status svg {
    color: var(--accent-green);
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.45));
}

.hero-showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.75) 100%);
}

.hero-showcase-footer {
    align-items: flex-start;
}

.hero-showcase-client {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hero-client-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 6px 18px rgba(168, 85, 247, 0.3);
}

.hero-client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-client-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
}

.hero-client-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-showcase-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-tag {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero-testimonial-snippet {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(29, 78, 216, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 32px rgba(59, 130, 246, 0.15);
}

.hero-testimonial-snippet svg {
    color: #fbbf24;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 16px rgba(251, 191, 36, 0.35));
}

.hero-testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 0.45rem;
}

.hero-testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .hero-content {
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .hero-section {
        padding: 5rem 0 5.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-showcase-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1 1 210px;
        justify-content: center;
    }

    .hero-showcase-card {
        padding: 1.4rem;
    }

    .hero-showcase-image {
        height: 220px;
    }
}

@media (max-width: 540px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stat-card {
        min-width: 140px;
        padding: 0.85rem 1rem;
    }

    .hero-testimonial-snippet {
        flex-direction: column;
    }
}
/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.products-badge {
    background: rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2);
}

.products-badge svg {
    color: var(--star-gold);
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-box {
    background: #8b4513;
    color: var(--text-primary);
}

.stat-icon-star {
    background: #ffd700;
    color: var(--bg-primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
}

.products-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.products-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.products-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}

/* Product Card */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 
                0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 70px rgba(168, 85, 247, 0.3), 
                0 16px 50px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.45);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.2), transparent 55%),
                radial-gradient(circle at bottom left, rgba(147, 51, 234, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #4c1d95 0%, #1e1b4b 100%);
    opacity: 0.8;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px, 60px 60px;
    opacity: 0.4;
}

.product-image-2 {
    background: linear-gradient(135deg, #f59e0b 0%, #78350f 100%);
}

.product-image-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.4) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.3) 50%, transparent 70%),
        linear-gradient(135deg, #f59e0b 0%, #78350f 100%);
    opacity: 0.9;
}

.product-image-2::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    opacity: 0.3;
}

.product-image-3 {
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
}

.product-image-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(251, 191, 36, 0.5) 0%, transparent 70%),
        radial-gradient(circle at 30% 40%, rgba(220, 38, 38, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    opacity: 0.9;
}

.product-image-3::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.1) 3px, transparent 3px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.product-image-4 {
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
}

.product-image-4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.4) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(124, 58, 237, 0.3) 50%, transparent 70%),
        linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
    opacity: 0.9;
}

.product-image-4::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    opacity: 0.3;
}

.product-image-5 {
    background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%);
}

.product-image-5::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(165, 243, 252, 0.5) 0%, transparent 70%),
        radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #06b6d4 0%, #0e7490 100%);
    opacity: 0.9;
}

.product-image-5::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.1) 3px, transparent 3px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.product-image-6 {
    background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
}

.product-image-6::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(110, 231, 183, 0.4) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.3) 50%, transparent 70%),
        linear-gradient(135deg, #10b981 0%, #065f46 100%);
    opacity: 0.9;
}

.product-image-6::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    opacity: 0.3;
}

.product-overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2;
    text-align: center;
}

.overlay-text-orange {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.overlay-text-white {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 140px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.product-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(124, 58, 237, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(124, 58, 237, 0.5);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.product-price {
    font-size: 1rem;
    color: var(--text-primary);
}

.price-amount {
    font-weight: 700;
    font-size: 1.125rem;
}

.btn-purchase {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    color: var(--text-primary);
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35),
                0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-purchase:hover::before {
    left: 100%;
}

.btn-purchase:hover {
    background: linear-gradient(135deg, var(--accent-blue-dark) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.btn-purchase:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}

.btn-purchase svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-purchase:hover svg {
    transform: translateY(2px);
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 3rem 2rem;
    background: transparent;
}

.payment-methods-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.payment-methods-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.02em;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
}

.payment-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method-item:hover {
    transform: translateY(-4px);
    background: rgba(26, 26, 26, 0.6);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}

.payment-method-item svg {
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.payment-method-item:hover svg {
    transform: scale(1.1);
}

.payment-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.payment-method-item:hover .payment-icon {
    transform: scale(1.1);
}

.payment-method-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.payment-method-item .payment-method-note {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: -0.5rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: transparent;
    padding: 3rem 2rem 2rem;
    margin-top: 2rem !important;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 16px;
    padding: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-stat {
    display: flex;
    flex-direction: column;
}

.footer-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.footer-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-policies {
    display: flex;
    gap: 1.5rem;
}

.footer-policies a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-policies a:hover {
    color: var(--text-primary);
}

.footer-online {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    display: block;
}

/* Portfolio Section */
.portfolio-section {
    padding: 0.5rem 0 0 0;
}

.portfolio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.portfolio-badge {
    background: rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2);
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.portfolio-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -1rem;
}

/* Policy Pages */
.policy-section {
    padding: 2rem 0;
    background: transparent;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.policy-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.policy-updated {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.policy-content {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    color: var(--text-primary);
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Discord Promotion Card */
.discord-promo-section {
    padding: 3rem 2rem;
    background: transparent;
}

.discord-promo-card {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 0 auto !important;
    background: rgba(88, 101, 242, 0.18);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(88, 101, 242, 0.35);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.25),
                0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-promo-card:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.35),
                0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(88, 101, 242, 0.5);
}

.discord-promo-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.discord-promo-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 101, 242, 0.2);
    border-radius: 16px;
    color: #5865f2;
}

.discord-promo-text {
    flex: 1;
    min-width: 200px;
}

.discord-promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.discord-promo-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.discord-promo-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #5865f2;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-promo-button:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-promo-button svg {
    width: 20px;
    height: 20px;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    background: rgba(128, 128, 128, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    background: rgba(128, 128, 128, 0.25);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
    color: var(--text-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    background: rgba(168, 85, 247, 0.05);
    transition: background 0.2s;
}

.portfolio-image-placeholder:hover {
    background: rgba(168, 85, 247, 0.1);
}

.portfolio-image-placeholder svg {
    opacity: 0.5;
}

.portfolio-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Ograniczenie rozmiaru obraz��w - zapobiega zbyt du�0�4ym obrazom */
.portfolio-item {
    max-width: 100%;
    width: 100%;
    /* Umo�0�4liwia dynamiczne dostosowanie wysoko�0�2ci przez JavaScript */
    height: auto;
}

.portfolio-item img {
    max-width: 95%;
    max-height: none;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.portfolio-item:hover img {
    transform: scale(1.02);
}

.portfolio-item.hidden {
    display: none;
}

/* Pagination */
.portfolio-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem 0 3rem 0 !important;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(128, 128, 128, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(128, 128, 128, 0.25);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

/* Back to Home Button */
.back-to-home-container {
    display: flex;
    justify-content: center;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
}

.back-to-home-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(128, 128, 128, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.back-to-home-btn:hover {
    opacity: 1;
    background: rgba(128, 128, 128, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-home-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .products-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .back-to-home-container {
        padding: 1rem;
    }

    .back-to-home-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-container {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .overlay-text-orange,
    .overlay-text-white {
        font-size: 1.125rem;
    }
}

/* Billgang checkout is handled by the embed script, so no extra modal styles are needed. */

/* Crypto Section */
.crypto-section {
    padding: 2.5rem 0 4.5rem;
}
.crypto-page .back-to-home-container {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
}

.crypto-page .main-content {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
}

.crypto-container {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
}

.crypto-badge {
    background: rgba(168, 85, 247, 0.25);
    border: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.18);
    align-self: center;
}

.crypto-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.crypto-subtitle {
    font-size: 1.05rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.crypto-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem;
    border-radius: 24px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: fit-content;
}

.crypto-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(168, 85, 247, 0.15) 0%,
        rgba(124, 58, 237, 0.08) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.crypto-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(168, 85, 247, 0.15) 90deg,
        transparent 180deg
    );
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.crypto-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25),
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.crypto-card:hover::before {
    opacity: 1;
}

.crypto-card:hover::after {
    opacity: 1;
    transform: rotate(180deg);
}

.crypto-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: fit-content;
}

.crypto-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
    background: rgba(168, 85, 247, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crypto-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 60%
    );
    opacity: 0.5;
}

.crypto-card:hover .crypto-icon {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.crypto-icon[data-variant="btc"] {
    background: linear-gradient(135deg, #f7931a 0%, #f2a900 100%);
    border-color: rgba(247, 147, 26, 0.4);
    color: #1a0f00;
    box-shadow: 0 8px 24px rgba(247, 147, 26, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.crypto-icon[data-variant="ltc"] {
    background: linear-gradient(135deg, #b8b8b8 0%, #838383 100%);
    border-color: rgba(184, 184, 184, 0.4);
    color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(184, 184, 184, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.crypto-icon[data-variant="sol"] {
    background: linear-gradient(135deg, #14f195 0%, #9945ff 50%, #8752f3 100%);
    border-color: rgba(153, 69, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(153, 69, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.crypto-icon[data-variant="usdc-sol"],
.crypto-icon[data-variant="usdc-eth"] {
    background: linear-gradient(135deg, #2775ca 0%, #2e7ddb 100%);
    border-color: rgba(39, 117, 202, 0.4);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(39, 117, 202, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.crypto-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.crypto-card-network {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.crypto-card-network::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
}

.crypto-address-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    position: relative;
    z-index: 10;
}

.crypto-address {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(124, 58, 237, 0.25));
    border: 1.5px solid rgba(168, 85, 247, 0.4);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
}

.copy-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.copy-button:hover::before {
    width: 300px;
    height: 300px;
}

.copy-button:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.45), rgba(124, 58, 237, 0.35));
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.35),
                0 0 40px rgba(168, 85, 247, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.copy-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.25);
}

.copy-button svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.copy-button span {
    position: relative;
    z-index: 1;
}

.copy-button.copied {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(5, 150, 105, 0.3));
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.4),
                0 0 40px rgba(16, 185, 129, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.copy-button.copied svg {
    color: #34d399;
}

.copy-feedback {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(6px);
    min-height: 1rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.copy-feedback.visible {
    opacity: 1;
    transform: translateY(0);
    color: var(--accent-green);
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.crypto-note {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(124, 58, 237, 0.1));
    border: 1.5px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.crypto-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(168, 85, 247, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.crypto-note p {
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Special "Other Crypto" Card */
.crypto-card-special {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(68, 81, 222, 0.1));
    border-color: rgba(88, 101, 242, 0.3);
}

.crypto-card-special::before {
    background: radial-gradient(
        circle at top right,
        rgba(88, 101, 242, 0.2) 0%,
        rgba(68, 81, 222, 0.1) 50%,
        transparent 100%
    );
}

.crypto-card-special::after {
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(88, 101, 242, 0.2) 90deg,
        transparent 180deg
    );
}

.crypto-card-special:hover {
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3),
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.crypto-icon-special {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.crypto-icon-special svg {
    position: relative;
    z-index: 2;
}

.crypto-special-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.crypto-special-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}

.crypto-discord-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.4), rgba(68, 81, 222, 0.35));
    border: 1.5px solid rgba(88, 101, 242, 0.5);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.crypto-discord-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.crypto-discord-button:hover::before {
    width: 300px;
    height: 300px;
}

.crypto-discord-button:hover {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-color: rgba(88, 101, 242, 0.7);
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.45),
                0 0 40px rgba(88, 101, 242, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.crypto-discord-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.35);
}

.crypto-discord-button svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.crypto-discord-button span {
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0 3rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.testimonials-badge {
    background: rgba(168, 85, 247, 0.25);
    border: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.18);
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.testimonials-subtitle {
    font-size: 1.05rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 1rem;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 
                0 4px 12px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: fit-content;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(168, 85, 247, 0.12) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.005);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25),
                0 12px 40px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(124, 58, 237, 0.3));
    border: 2px solid rgba(168, 85, 247, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.testimonial-avatar-initial {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.2;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.testimonial-stars svg {
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 2.5rem;
    line-height: 0;
    position: absolute;
    left: -0.5rem;
    top: 0.75rem;
    color: rgba(168, 85, 247, 0.3);
    font-family: Georgia, serif;
}

@media (max-width: 900px) {
    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0 2rem;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-header {
        flex-wrap: wrap;
    }

    .testimonial-stars {
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }

    .testimonial-avatar-initial {
        font-size: 1.25rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-role {
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .crypto-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .crypto-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .crypto-card {
        padding: 1.75rem;
    }

    .crypto-address-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .copy-button {
        justify-content: center;
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .crypto-note {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .crypto-title {
        font-size: 2.2rem;
    }

    .crypto-subtitle {
        font-size: 1rem;
    }

    .crypto-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .crypto-icon {
        width: 56px;
        height: 56px;
        font-size: 0.85rem;
    }

    .crypto-card-title {
        font-size: 1.2rem;
    }

    .copy-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .crypto-note {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   Security Protection Styles
   ============================================ */

/* Blokowanie zaznaczania tekstu */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Zezw��l na zaznaczanie w polach input (je�0�2li s�0�2) */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Blokowanie przeci�0�2gania obraz��w */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* Blokowanie prawych przycisk��w kontekstowych */
* {
    -webkit-touch-callout: none;
}

/* Dodatkowe zabezpieczenie obraz��w - tylko user-select i drag, nie zmieniaj layoutu */
.portfolio-item img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Dla product-image zachowaj istniej�0�2ce style layoutu */
.product-image img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    /* Zachowaj oryginalne style layoutu */
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}

/* Przywr���0�4 pointer-events dla interaktywnych element��w */
button, a, .btn-purchase, .filter-btn, .pagination-btn, .discord-button, .discord-promo-button {
    pointer-events: auto;
    cursor: pointer;
}
