:root {
    --bg-color: #030305;
    --text-color: #f4f5f6;
    --text-muted: #848995;
    --accent-color: #3b82f6;
    --border-color: rgba(255, 255, 255, 0.05);
    --card-bg: rgba(13, 14, 18, 0.75);
    --font-sans: 'Arial', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
    cursor: none;
}

body {
    position: relative;
    cursor: none;
}

a, button, input, textarea {
    cursor: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- DEEP SPACE NEBULA BACKGROUND --- */
.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--bg-color);
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1.5px 1.5px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 150px, #fff, transparent),
        radial-gradient(2px 2px at 150px 240px, rgba(255,255,255,0.6), transparent);
    background-size: 240px 240px;
    opacity: 0.4;
}

.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.18;
    pointer-events: none;
}

.nebula-purple {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #d946ef, #701a75);
    top: 5%;
    left: -15%;
}

.nebula-cyan {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #06b6d4, #0891b2);
    bottom: 5%;
    right: -15%;
}

.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* --- CUSTOM INTERACTIVE CURSOR --- */
.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s var(--transition-smooth), height 0.3s var(--transition-smooth), background-color 0.3s;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: #06b6d4;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.custom-cursor.active {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #06b6d4;
}

/* --- NAVIGATION HEADER --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(3, 3, 5, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
}

.nav-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.nav-logo span {
    color: var(--text-muted);
}

.nav-link {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 30px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-btn {
    font-size: 13px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #000000;
}

/* --- HERO COMPONENT --- */
.hero {
    padding: 190px 0 110px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    background-color: rgba(6, 182, 212, 0.05);
    padding: 6px 14px;
    border-radius: 35px;
    color: #06b6d4;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-title span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}

.gradient-text {
    background: linear-gradient(to right, #d946ef, #ff007f, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.btn-primary {
    background-color: #ffffff;
    color: #030305;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    display: inline-block;
    margin-right: 15px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--text-color);
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- SECTIONS --- */
section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 60px;
}

.section-number {
    font-size: 11px;
    color: #06b6d4;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-color);
}

/* --- BALANCOVANÝ OBRÁZKOVÝ PORTFOLIO ROW LAYOUT --- */
.portfolio-row-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.portfolio-row-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.portfolio-row-item.row-reverse {
    flex-direction: row-reverse;
}

.item-preview-box {
    flex: 1;
    height: 340px;
    background-color: #07080c;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.item-preview-box a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.item-info-box {
    flex: 1;
}

.portfolio-row-item:hover .item-preview-box {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.05);
}

.portfolio-row-item:hover .portfolio-img {
    transform: scale(1.03);
    opacity: 1;
}

.placeholder-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 20px;
    opacity: 0.4;
    z-index: 2;
    transition: var(--transition-smooth);
}

.portfolio-row-item:hover .placeholder-icon {
    opacity: 1;
    transform: scale(1.1);
}

.item-title a {
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.item-title a:hover {
    color: #06b6d4;
}

.item-category {
    font-size: 11px;
    font-weight: 700;
    color: #06b6d4;
    display: block;
    margin-bottom: 10px;
}

.item-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.item-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- SERVICES MODULE --- */
.service-row {
    display: flex;
    border-top: 1px solid var(--border-color);
    padding: 35px 0;
}

.service-row:last-child {
    border-bottom: 1px solid var(--border-color);
}

.service-col-num {
    width: 20%;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(to right, #ff007f, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-col-content {
    width: 80%;
}

.service-col-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-col-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- PRICING STRUCTURE --- */
.text-center { text-align: center; }
.pricing-section .section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 550px;
    margin: 15px auto 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: flex;
    gap: 25px;
    margin-top: 60px;
}

.price-card {
    flex: 1;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    border-radius: 0 0 20px 20px;
    filter: blur(2px);
}

.card-purple { border-color: rgba(217, 70, 239, 0.15); }
.card-purple .card-glow { background: #d946ef; box-shadow: 0 0 20px #d946ef; }
.card-purple .card-package-title { color: #d946ef; }

.card-orange { border-color: rgba(249, 115, 22, 0.15); }
.card-orange .card-glow { background: #f97316; box-shadow: 0 0 20px #f97316; }
.card-orange .card-package-title { color: #f97316; }

.card-blue { border-color: rgba(59, 130, 246, 0.15); }
.card-blue .card-glow { background: #3b82f6; box-shadow: 0 0 20px #3b82f6; }
.card-blue .card-package-title { color: #60a5fa; }

.card-package-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-price {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: #ffffff;
}

.card-price-sub {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
    height: 70px;
}

.card-features {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-bottom: 35px;
}

.card-features li {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 14px;
    position: relative;
    padding-left: 18px;
}

.card-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-size: 16px;
}

.price-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px 0;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.price-card:hover {
    transform: translateY(-5px);
}

.card-purple:hover { border-color: rgba(217, 70, 239, 0.4); box-shadow: 0 10px 30px rgba(217, 70, 239, 0.05); }
.card-orange:hover { border-color: rgba(249, 115, 22, 0.4); box-shadow: 0 10px 30px rgba(249, 115, 22, 0.05); }
.card-blue:hover { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05); }

.price-card:hover .price-btn {
    background-color: #ffffff;
    color: #030305;
    border-color: #ffffff;
}

/* Optional Addons */
.addons-container {
    margin-top: 70px;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
}

.addons-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
}

.addons-grid {
    display: flex;
    gap: 20px;
}

.addon-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.addon-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.addon-price {
    font-size: 18px;
    font-weight: 800;
    color: #ff007f;
    margin-bottom: 8px;
}

.addon-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- REAL CONTACT FORM MODULE --- */
.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-tag {
    font-size: 11px;
    color: #06b6d4;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.contact-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-subtext {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 45px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.block-label {
    font-size: 11px;
    font-weight: 700;
    color: #d946ef;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.block-link {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.block-link:hover {
    color: #06b6d4;
}

.discord-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #5865F2;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition-smooth);
    margin-top: 5px;
}

.discord-contact-btn:hover {
    background-color: #4752C4;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}

.contact-form-holder {
    flex: 1;
    background-color: rgba(10, 11, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 40px rgba(217, 70, 239, 0.02);
    border-radius: 28px;
    padding: 45px;
    backdrop-filter: blur(20px);
}

.form-instruction {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.submit-btn {
    width: 100%;
    background-color: #ffffff;
    color: #030305;
    border: 1px solid #ffffff;
    padding: 16px 0;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/* --- FOOTER LAYER --- */
.main-footer {
    background-color: #020203;
    padding: 60px 0 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-top-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span { color: var(--text-muted); }

.brand-statement {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links-column a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.footer-links-column a:hover {
    color: #ffffff;
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.fiverr-badge {
    color: #06b6d4;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE MATRIX --- */
@media (max-width: 992px) {
    .portfolio-row-item, .portfolio-row-item.row-reverse { flex-direction: column; align-items: stretch; gap: 25px; }
    .item-preview-box { height: 280px; }
    .pricing-grid, .addons-grid, .contact-grid { flex-direction: column; gap: 30px; }
    .footer-top-grid { flex-direction: column; gap: 30px; }
}

@media (max-width: 768px) {
    html, body { cursor: auto; }
    .custom-cursor, .custom-cursor-dot { display: none; }
    .nav-links { display: none; }
    .hero-title { font-size: 38px; }
    .contact-headline { font-size: 34px; }
    .contact-form-holder { padding: 25px; }
    .service-row { flex-direction: column; gap: 10px; }
    .service-col-num { width: 100%; }
    .service-col-content { width: 100%; }
    .footer-bottom-bar { flex-direction: column; gap: 15px; text-align: center; }
}