/* GLOBALNE STYLE */
:root {
    --primary-purple: #8B5CF6;
    --secondary-purple: #7C3AED;
    --dark-purple: #6D28D9;
    --light-purple: #A78BFA;
    --pink: #EC4899;
    --light-pink: #F472B6;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --lighter-gray: #F1F5F9;
    --dark-gray: #1F2937;
    --gradient-main: linear-gradient(135deg, var(--primary-purple) 0%, var(--pink) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-purple) 0%, #BE185D 100%);
    --gradient-light: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-warning: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-danger: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
    --shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    --shadow-hover: 0 20px 40px rgba(139, 92, 246, 0.25);
    --shadow-large: 0 25px 50px rgba(139, 92, 246, 0.2);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --transition-slow: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

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

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--light-gray);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* ANIMACJE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(139, 92, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ringPulse {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    50% { transform: rotate(-5deg) scale(1.05); }
    75% { transform: rotate(5deg) scale(1.05); }
    100% { transform: rotate(0deg) scale(1); }
}

@keyframes progressFill {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: var(--progress-value, 100); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* TŁO Z ANIMOWANYM GRADIENTEM */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(-45deg, #8B5CF6, #7C3AED, #EC4899, #F472B6);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.03;
}

/* DEKORACYJNE ELEMENTY */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.05;
    filter: blur(40px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 20%;
    animation: float 18s ease-in-out infinite;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 3rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: inherit;
}

.logo-container:hover {
    text-decoration: none;
}

.logo-container img {
    height: 50px;
    width: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
    transition: var(--transition);
}

.logo-container:hover img {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--light-purple);
    font-weight: 500;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

nav a:hover,
nav a.active {
    color: var(--primary-purple);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-main);
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    padding: 0.85rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    border: 2px solid var(--primary-purple);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-purple);
    cursor: pointer;
}

/* PAGE HERO (dla podstron) */
.page-hero {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    opacity: 0.9;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--white);
    opacity: 1;
    font-weight: 500;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* HERO SECTION (strona główna) */
.hero {
    text-align: center;
    padding: 8rem 2rem 6rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero h2 span {
    background: linear-gradient(90deg, #FCD34D, #F472B6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.2s both;
    opacity: 0.9;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #FFFFFF, #FBCFE8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-purple);
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    border: 3px solid var(--white);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* QUICK LINKS SECTION */
.quick-links {
    padding: 6rem 2rem;
    background: var(--lighter-gray);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.link-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(167, 139, 250, 0.3);
}

.link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.link-card p {
    color: var(--dark-gray);
    opacity: 0.8;
}

/* SECTIONS */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    background: var(--lighter-gray);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(167, 139, 250, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.cta-section {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    background: var(--gradient-light);
    border-radius: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* MONITORING SECTION */
.monitoring-section {
    background: rgba(255, 255, 255, 0.98);
    padding: 5rem 2rem;
    position: relative;
    border-top: 5px solid;
    border-image: var(--gradient-main) 1;
}

.monitoring-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.monitoring-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.1);
}

.monitoring-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.monitoring-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.monitoring-title i {
    font-size: 2.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.monitoring-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.refresh-btn {
    background: var(--white);
    border: 2px solid rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 5;
}

.refresh-btn:hover {
    transform: rotate(180deg);
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
}

.monitoring-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.monitoring-card {
    background: rgba(248, 250, 252, 0.7);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.monitoring-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.monitoring-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-main);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-purple);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-purple);
}

.circular-progress-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
}

.circular-progress {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.progress-bg {
    fill: none;
    stroke: rgba(139, 92, 246, 0.1);
    stroke-width: 10;
}

.progress-circle {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease;
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-purple);
}

.progress-value span {
    font-size: 1.2rem;
    color: var(--light-purple);
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-purple);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--light-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.last-update {
    font-size: 0.9rem;
    color: var(--light-purple);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.additional-info {
    background: var(--gradient-light);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.additional-info h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

/* FEATURES SECTION */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-main);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.feature-highlight {
    background: var(--gradient-light);
    border-radius: 25px;
    padding: 4rem 3rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow);
}

/* COMPARISON GRID */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.server-plan {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.server-plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features li i {
    color: var(--primary-purple);
}

/* COINS SECTION */
.coins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.coin-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.coin-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.coin-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.coin-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

/* TESTIMONIALS */
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    padding: 2rem 1rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 350px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: var(--dark-purple);
    margin-bottom: 0.3rem;
}

.testimonial-rating {
    color: #F59E0B;
    font-size: 1rem;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-purple);
    background: var(--gradient-light);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    padding: 2rem;
    max-height: 500px;
}

/* COMMUNITY SECTION */
.community-section {
    background: var(--gradient-light);
    text-align: center;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.community-stat {
    text-align: center;
}

.community-stat i {
    font-size: 3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.community-stat h3 {
    font-size: 2.5rem;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gradient-main);
    color: white;
}

/* FOOTER */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-main);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-main);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-slow);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .monitoring-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    nav.show {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 6rem 1rem 4rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .monitoring-section {
        padding: 3rem 1rem;
    }
    
    .monitoring-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .monitoring-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .monitoring-controls {
        flex-direction: column;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-main);
    border-radius: 6px;
    border: 3px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-purple);
}
/* Dodatkowe style dla nowych elementów */
.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.server-plan.popular {
    border-color: var(--primary-purple);
    transform: scale(1.05);
    z-index: 2;
}

.server-plan.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.coin-value {
    display: inline-block;
    background: var(--gradient-light);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--dark-purple);
    margin-top: 1rem;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--light-purple);
    margin-top: 1rem;
    font-style: italic;
}

/* Styl dla karty w opiniach */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    padding: 2rem 1rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* Animacje dla link-cards */
.link-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.link-card.animated {
    opacity: 1;
    transform: translateY(0);
}
