* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #1a1d29;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        *:focus {
            outline: 2px solid #e8c7a0;
            outline-offset: 2px;
        }

        *:focus:not(:focus-visible) {
            outline: none;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(-45deg, #0f1119, #1a1d29, #1d2033, #1a1d29);
            background-size: 400% 400%;
            animation: gradientShift 15s ease-in-out infinite;
            z-index: 0;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/fortunata_background_tile.png') repeat;
            background-size: 512px 512px;
            opacity: 0.075;
            mix-blend-mode: multiply;
            z-index: 1;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-border-outer {
            position: absolute;
            top: 10%;
            left: 5%;
            right: 5%;
            bottom: 15%;
            border: 2px solid rgba(232, 199, 160, 0.4);
            z-index: 2;
        }

        .hero-border-inner {
            position: absolute;
            top: 12%;
            left: 7%;
            right: 7%;
            bottom: 17%;
            border: 1px solid rgba(232, 199, 160, 0.2);
            z-index: 2;
        }

        .geometric-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            z-index: 2;
            opacity: 0.1;
        }

        .geometric-bg::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 120px;
            height: 120px;
            border: 2px solid #e8c7a0;
        }

        .geometric-bg::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 80px;
            height: 80px;
            border: 1px solid #e8c7a0;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
            max-width: 800px;
            width: 90%;
            padding: 2rem;
            margin: 0 auto;
            animation: fadeInUp 1.2s ease-out;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-icon {
            display: inline-block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(232, 199, 160, 0.15);
            border: 1px solid rgba(232, 199, 160, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .social-icon:hover {
            background: rgba(232, 199, 160, 0.25);
            border-color: rgba(232, 199, 160, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(232, 199, 160, 0.2);
        }

        .social-icon svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            fill: #e8c7a0;
            transition: fill 0.3s ease;
        }

        .social-icon:hover svg {
            fill: #f5e6d3;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-logo {
            display: block;
            margin: 0 auto 1rem auto;
            max-width: 600px;
            width: 100%;
            height: auto;
        }

        .hero h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            opacity: 0.9;
            color: white;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            color: #e0e6ed;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(180deg, #f5e6d3 0%, #e8c7a0 50%, #d4b896 100%);
            color: #1a1d29;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 1px solid rgba(232, 199, 160, 0.3);
            cursor: pointer;
        }

        .cta-button:hover {
            background: linear-gradient(180deg, #d4b896 0%, #e8c7a0 50%, #f5e6d3 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(232, 199, 160, 0.3);
        }

        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-dark {
            background: #1a1d29;
            color: white;
            position: relative;
        }

        .section-light {
            background: linear-gradient(135deg, #1f2332 0%, #252a3a 100%);
            color: #e0e6ed;
            position: relative;
            width: 100%;
            padding: 5rem 0;
        }

        .section-light .section {
            padding: 0 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            font-family: 'Limelight', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 400;
            background: linear-gradient(180deg, #f5e6d3 0%, #e8c7a0 50%, #d4b896 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .portfolio-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .portfolio-card {
            background: rgba(31, 35, 50, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            border: 1px solid rgba(232, 199, 160, 0.3);
            transition: all 0.4s ease;
            overflow: hidden;
            text-decoration: none;
            color: white;
            display: block;
            height: 520px;
            box-shadow: 0 0 20px rgba(232, 199, 160, 0.15);
            animation: softPulse 4s ease-in-out infinite;
        }

        @keyframes softPulse {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(232, 199, 160, 0.15);
            }
            50% { 
                box-shadow: 0 0 25px rgba(232, 199, 160, 0.25);
            }
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
            background: rgba(31, 35, 50, 0.9);
            border-color: rgba(232, 199, 160, 0.5);
            box-shadow: 0 0 35px rgba(232, 199, 160, 0.4), 0 0 70px rgba(232, 199, 160, 0.15);
            animation: none;
        }

        .portfolio-image {
            width: 100%;
            height: 420px;
            display: block;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-card:hover .portfolio-image {
            transform: scale(1.05);
        }

        .portfolio-info {
            padding: 1rem;
            text-align: center;
            height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .blogger-name {
            color: #e8c7a0;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .mod-name {
            color: #e0e6ed;
            font-size: 0.8rem;
            opacity: 0.8;
            line-height: 1.2;
        }

        .pricing {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .price-card {
            background: rgba(232, 199, 160, 0.12);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(232, 199, 160, 0.4);
            transition: transform 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-5px);
            background: rgba(232, 199, 160, 0.18);
            border-color: rgba(232, 199, 160, 0.6);
        }

        .price-card h3 {
            background: linear-gradient(45deg, #c084fc, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 600;
            margin: 1rem 0;
            background: linear-gradient(45deg, #c084fc, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .price-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(232, 199, 160, 0.2);
        }

        .contact {
            text-align: center;
            background: linear-gradient(135deg, #0f1119 0%, #1a1d29 100%);
            color: white;
            padding: 5rem 2rem;
            position: relative;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .contact-item {
            background: rgba(232, 199, 160, 0.05);
            padding: 2rem;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(232, 199, 160, 0.2);
        }

        .contact-item h3 {
            color: #e8c7a0;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .contact-item a {
            color: #e8c7a0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #f5e6d3;
            text-decoration: underline;
        }

        .what-you-receive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .hero h2 { font-size: 1.2rem; }
            .section { padding: 3rem 1rem; }
            .portfolio-showcase { grid-template-columns: 1fr; }
            .pricing { grid-template-columns: 1fr; }
            .hero-border-outer { top: 5%; left: 2%; right: 2%; bottom: 20%; }
            .hero-border-inner { top: 7%; left: 4%; right: 4%; bottom: 22%; }
            .hero-content { padding: 1rem; width: 95%; }
            .hero-logo { max-width: 90%; }
            .contact-info { grid-template-columns: 1fr; }
            .section h2 { font-size: 2rem; }
            .what-you-receive-grid { grid-template-columns: repeat(2, 1fr); }
            .cta-button { 
                padding: 0.8rem 2rem; 
                font-size: 0.9rem; 
            }
        }

        @media (max-width: 480px) {
            .hero h2 { font-size: 1rem; }
            .section { padding: 2rem 0.5rem; }
            .hero p { font-size: 1rem; }
            .what-you-receive-grid { grid-template-columns: 1fr; }
        }