/* Pacific Crest Building Products Inc. — Surrealism style */

:root {
    --bg-main: #0c0e14;
    --bg-soft: #12151f;
    --surface: rgba(28, 32, 48, 0.72);
    --surface-soft: rgba(22, 26, 40, 0.85);
    --glass: rgba(244, 232, 216, 0.06);
    --ink: #f4e8d8;
    --ink-soft: #b8a898;
    --outline: rgba(232, 168, 56, 0.45);
    --line: rgba(244, 232, 216, 0.12);

    /* Surreal palette */
    --dream-gold: #e8a838;
    --dream-amber: #c47d2a;
    --dream-teal: #3d6b7a;
    --dream-blue: #2a3f6b;
    --dream-purple: #5c3d6e;
    --dream-coral: #b85c4a;
    --dream-mist: rgba(180, 200, 220, 0.18);
    --dream-glow: rgba(232, 168, 56, 0.35);

    --accent: #e8a838;
    --accent-strong: #f0c060;
    --accent-2: #5a8a9a;
    --accent-3: #8a5c9a;

    --font-display: "Cinzel", "Times New Roman", serif;
    --font-ui: "Cormorant Garamond", Georgia, serif;

    --border-surreal: 1px solid var(--outline);
    --shadow-surreal: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 40px rgba(232, 168, 56, 0.08);
    --shadow-surreal-sm: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(244, 232, 216, 0.06);
    --radius-melt: 60% 40% 55% 45% / 45% 55% 40% 60%;
    --radius-card: 4px 24px 4px 24px / 24px 4px 24px 4px;
    --radius-blob: 50% 20% 50% 20% / 20% 50% 20% 50%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    font-size: 18px;
    line-height: 1.8;
    color: var(--ink);
    background-color: var(--bg-main);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(90, 60, 110, 0.45), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 60%, rgba(42, 63, 107, 0.35), transparent 50%),
        radial-gradient(ellipse 50% 35% at 5% 80%, rgba(196, 125, 42, 0.2), transparent 45%),
        linear-gradient(180deg, #0c0e14 0%, #12151f 40%, #0f1218 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 14, 20, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-surreal);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 20px;
    background: radial-gradient(circle at 35% 30%, var(--dream-gold), var(--dream-amber));
    border: var(--border-surreal);
    border-radius: var(--radius-melt);
    box-shadow: 0 0 20px var(--dream-glow);
    animation: melt 8s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--ink);
    max-width: 320px;
    line-height: 1.35;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-strong);
    background: rgba(232, 168, 56, 0.1);
    border-color: var(--outline);
    box-shadow: 0 0 24px rgba(232, 168, 56, 0.15);
}

.navbar.scrolled {
    background: rgba(8, 10, 16, 0.94);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    padding: 8px;
    border: var(--border-surreal);
    border-radius: 4px;
    background: rgba(232, 168, 56, 0.08);
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(12, 14, 20, 0.96);
        backdrop-filter: blur(20px);
        border-bottom: var(--border-surreal);
        padding: 22px;
        gap: 10px;
        transform: translateY(-125%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
        box-shadow: var(--shadow-surreal);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

/* Hero — surreal dreamscape */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    padding-bottom: 88px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.surreal-sky {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(61, 107, 122, 0.4), transparent 60%),
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(92, 61, 110, 0.3), transparent 55%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(196, 125, 42, 0.15), transparent 50%);
}

.surreal-mist {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: drift 20s ease-in-out infinite;
}

.surreal-mist-1 {
    width: 400px;
    height: 200px;
    top: 15%;
    left: -5%;
    background: var(--dream-mist);
    animation-delay: 0s;
}

.surreal-mist-2 {
    width: 350px;
    height: 180px;
    bottom: 20%;
    right: -8%;
    background: rgba(138, 92, 154, 0.2);
    animation-delay: -8s;
}

.surreal-shapes .shape {
    position: absolute;
    opacity: 0.7;
}

/* Melting form */
.shape-melt {
    width: 140px;
    height: 90px;
    top: 14%;
    right: 12%;
    background: linear-gradient(160deg, var(--dream-gold), var(--dream-amber));
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    box-shadow: 0 0 30px var(--dream-glow);
    animation: melt 10s ease-in-out infinite;
}

.shape-melt::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 20%;
    width: 60%;
    height: 35px;
    background: inherit;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    filter: blur(1px);
    opacity: 0.85;
}

/* Floating eye */
.shape-eye {
    width: 72px;
    height: 72px;
    bottom: 32%;
    left: 10%;
    background: radial-gradient(circle at 40% 40%, #fff8f0, var(--dream-teal) 60%, var(--dream-blue));
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: 0 0 24px rgba(90, 138, 154, 0.4);
    animation: float 7s ease-in-out infinite;
}

.shape-eye::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: #1a1520;
    border-radius: 50%;
}

.shape-eye::after {
    content: "";
    position: absolute;
    top: 38%;
    left: 42%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* Door in sky */
.shape-door {
    width: 56px;
    height: 88px;
    top: 22%;
    left: 22%;
    background: linear-gradient(180deg, #2a2520, #1a1815);
    border: 2px solid var(--accent);
    border-radius: 28px 28px 4px 4px;
    box-shadow: 0 0 20px rgba(232, 168, 56, 0.25);
    animation: float 9s ease-in-out infinite 1s;
}

.shape-door::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -20px;
    right: -20px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(180, 200, 220, 0.5), transparent 70%);
    border-radius: 50%;
}

/* Clock */
.shape-clock {
    width: 64px;
    height: 64px;
    top: 38%;
    right: 28%;
    background: radial-gradient(circle, #f4e8d8 30%, var(--dream-coral) 70%);
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: melt 12s ease-in-out infinite 0.5s;
}

.shape-clock::before,
.shape-clock::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #1a1520;
    transform-origin: bottom center;
}

.shape-clock::before {
    width: 2px;
    height: 18px;
    transform: translate(-50%, -100%) rotate(-30deg);
}

.shape-clock::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -100%) rotate(60deg);
}

/* Cloud */
.shape-cloud {
    width: 100px;
    height: 40px;
    bottom: 18%;
    right: 16%;
    background: rgba(200, 215, 230, 0.25);
    border-radius: 50px;
    filter: blur(2px);
    animation: drift 15s ease-in-out infinite;
}

.shape-cloud::before,
.shape-cloud::after {
    content: "";
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.shape-cloud::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.shape-cloud::after {
    width: 40px;
    height: 40px;
    top: -18px;
    right: 12px;
}

/* Arch */
.shape-arch {
    width: 80px;
    height: 100px;
    bottom: 28%;
    left: 30%;
    border: 2px solid rgba(232, 168, 56, 0.4);
    border-bottom: none;
    border-radius: 80px 80px 0 0;
    background: transparent;
    animation: float 8s ease-in-out infinite 2s;
}

/* Orb */
.shape-orb {
    width: 48px;
    height: 48px;
    top: 55%;
    left: 6%;
    background: radial-gradient(circle at 30% 25%, #fff, var(--dream-purple));
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(138, 92, 154, 0.5);
    animation: pulse-glow 4s ease-in-out infinite;
}

.surreal-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.surreal-horizon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(61, 107, 122, 0.15));
    opacity: 1;
}

.surreal-floaters {
    position: absolute;
    inset: 0;
}

.floater {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    width: 56px;
    height: 56px;
    background: rgba(28, 32, 48, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--outline);
    border-radius: var(--radius-melt);
    box-shadow: var(--shadow-surreal-sm);
    animation: float 6s ease-in-out infinite;
    opacity: 0.85;
}

.floater-1 { top: 18%; right: 32%; animation-delay: 0s; }
.floater-2 { top: 52%; right: 8%; animation-delay: 1s; font-size: 1.5rem; }
.floater-3 { bottom: 22%; left: 14%; animation-delay: 2s; }
.floater-4 { top: 30%; left: 8%; animation-delay: 0.5s; }
.floater-5 { bottom: 40%; right: 36%; animation-delay: 1.5s; font-size: 1.6rem; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(2deg); }
    66% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes melt {
    0%, 100% { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; transform: rotate(0deg); }
    25% { border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%; transform: rotate(1deg); }
    50% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; transform: rotate(-1deg); }
    75% { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; transform: rotate(0.5deg); }
}

@keyframes drift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-15px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(138, 92, 154, 0.4); opacity: 0.8; }
    50% { box-shadow: 0 0 50px rgba(138, 92, 154, 0.7); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-strong);
    background: rgba(232, 168, 56, 0.12);
    padding: 8px 18px;
    border-radius: 2px;
    margin-bottom: 24px;
    border: var(--border-surreal);
    box-shadow: 0 0 20px rgba(232, 168, 56, 0.1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 58px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--accent-strong);
    -webkit-text-fill-color: var(--accent-strong);
    text-shadow: 0 0 40px var(--dream-glow), 0 2px 0 rgba(0, 0, 0, 0.3);
    font-style: italic;
    letter-spacing: 0.12em;
}

.hero-pretitle {
    font-family: var(--font-ui);
    font-size: 22px;
    font-style: italic;
    color: var(--accent-2);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 720px;
    margin-bottom: 32px;
    background: rgba(18, 21, 31, 0.65);
    backdrop-filter: blur(12px);
    padding: 18px 22px;
    border: var(--border-surreal);
    border-radius: var(--radius-blob);
    border-left: 3px solid var(--accent);
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 2px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border: var(--border-surreal);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.25), rgba(196, 125, 42, 0.15));
    color: var(--accent-strong);
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(232, 168, 56, 0.35);
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.35), rgba(196, 125, 42, 0.25));
}

.btn-secondary {
    background: rgba(90, 138, 154, 0.15);
    color: var(--ink);
    border-color: rgba(90, 138, 154, 0.4);
}

.btn-secondary:hover {
    background: rgba(90, 138, 154, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(90, 138, 154, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    opacity: 0.7;
}

.scroll-indicator .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.6; }
    50% { transform: translateY(10px) rotate(45deg); opacity: 1; }
}

/* Section headers */

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: "";
    display: block;
    width: 60%;
    height: 1px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 12px var(--dream-glow);
}

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 17px;
    font-style: italic;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 16px auto 0;
}

.section-tag {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--accent-strong);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(232, 168, 56, 0.1);
    border: var(--border-surreal);
    border-radius: 2px;
}

/* Services cards */

.games-section {
    padding: 96px 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(92, 61, 110, 0.2), transparent 55%),
        var(--bg-soft);
    border-top: var(--border-surreal);
    position: relative;
}

.games-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, var(--accent), transparent);
    opacity: 0.4;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: var(--border-surreal);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-surreal-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.game-card:nth-child(1) { transform: rotate(-0.5deg) translateY(8px); }
.game-card:nth-child(2) { transform: rotate(0.3deg); }
.game-card:nth-child(3) { transform: rotate(-0.4deg) translateY(12px); }

.game-card:hover {
    transform: translateY(-6px) rotate(0deg) !important;
    box-shadow: var(--shadow-surreal);
    border-color: rgba(232, 168, 56, 0.5);
}

.game-card.featured {
    border-color: rgba(232, 168, 56, 0.35);
    background: linear-gradient(180deg, rgba(32, 36, 52, 0.9) 0%, rgba(22, 26, 40, 0.85) 100%);
}

.game-image {
    position: relative;
    height: 168px;
    border-bottom: var(--border-surreal);
    overflow: hidden;
}

.game-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(0, 0, 0, 0.4), transparent 60%);
}

.game-placeholder.game-1 {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(244, 232, 216, 0.15), transparent 50%),
        linear-gradient(160deg, var(--dream-blue), var(--dream-teal) 60%, var(--dream-purple));
}

.game-placeholder.game-2 {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(232, 168, 56, 0.2), transparent 45%),
        linear-gradient(150deg, var(--dream-purple), var(--dream-coral) 55%, var(--dream-amber));
}

.game-placeholder.game-3 {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(200, 215, 230, 0.15), transparent 48%),
        linear-gradient(140deg, var(--dream-teal), var(--dream-blue) 50%, var(--dream-gold));
}

.game-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: float 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.game-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.game-badge {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    border: var(--border-surreal);
    background: rgba(12, 14, 20, 0.8);
    color: var(--accent-strong);
    font-weight: 500;
}

.game-badge.new {
    border-color: rgba(90, 138, 154, 0.5);
    color: var(--accent-2);
}

.game-badge.popular {
    border-color: rgba(232, 168, 56, 0.5);
}

.game-badge.coming {
    border-color: rgba(138, 92, 154, 0.5);
    color: var(--accent-3);
}

.game-content {
    padding: 24px 24px 26px;
}

.game-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.game-genre {
    font-family: var(--font-ui);
    font-size: 15px;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.game-description {
    font-family: var(--font-ui);
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.75;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-tag {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 2px;
    background: rgba(232, 168, 56, 0.08);
    border: 1px solid rgba(232, 168, 56, 0.25);
    color: var(--ink-soft);
}

.game-link {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-strong);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.game-link:hover {
    color: var(--accent);
    text-shadow: 0 0 16px var(--dream-glow);
}

/* About */

.about-section {
    padding: 96px 0;
    border-top: var(--border-surreal);
    background:
        radial-gradient(ellipse 60% 40% at 85% 20%, rgba(138, 92, 154, 0.2), transparent 50%),
        radial-gradient(ellipse 50% 35% at 10% 80%, rgba(196, 125, 42, 0.12), transparent 45%),
        var(--bg-main);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-description {
    font-family: var(--font-ui);
    color: var(--ink-soft);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.85;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    padding: 18px;
    background: var(--surface);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-blob);
    border: var(--border-surreal);
    box-shadow: var(--shadow-surreal-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-item:nth-child(odd) {
    transform: rotate(-0.5deg);
}

.value-item:nth-child(even) {
    transform: rotate(0.5deg);
}

.value-item:hover {
    transform: translateY(-4px) rotate(0deg);
    box-shadow: var(--shadow-surreal);
    border-color: rgba(232, 168, 56, 0.35);
}

.value-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    opacity: 0.9;
}

.value-item h4 {
    font-family: var(--font-display);
    margin: 10px 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.value-item p {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.about-visual {
    position: relative;
    height: 340px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-card);
    border: var(--border-surreal);
    box-shadow: var(--shadow-surreal);
    overflow: hidden;
}

.visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(244, 232, 216, 0.1), transparent 60%);
}

.visual-card.card-1 {
    width: 86%;
    height: 172px;
    top: 0;
    right: 0;
    background: linear-gradient(145deg, var(--dream-blue), var(--dream-purple));
    transform: rotate(2deg);
    animation: float 8s ease-in-out infinite;
}

.visual-card.card-2 {
    width: 70%;
    height: 132px;
    bottom: 60px;
    left: 0;
    background: linear-gradient(125deg, var(--dream-coral), var(--dream-amber));
    transform: rotate(-2deg);
    animation: float 7s ease-in-out infinite 0.8s;
}

.visual-card.card-3 {
    width: 48%;
    height: 88px;
    bottom: 0;
    right: 10%;
    background: linear-gradient(120deg, var(--dream-teal), var(--dream-gold));
    transform: rotate(3deg);
    animation: melt 10s ease-in-out infinite 1.2s;
}

/* Contact */

.contact-section {
    padding: 96px 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(61, 107, 122, 0.25), transparent 55%),
        linear-gradient(180deg, var(--bg-main) 0%, var(--bg-soft) 100%);
    border-top: var(--border-surreal);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.14fr;
    gap: 44px;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px;
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: var(--border-surreal);
    border-radius: var(--radius-blob);
    box-shadow: var(--shadow-surreal-sm);
    transition: border-color 0.3s ease;
}

.info-item:hover {
    border-color: rgba(232, 168, 56, 0.35);
}

.info-icon {
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.85;
}

.info-text h4 {
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--accent-strong);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.info-text p,
.info-text a {
    font-family: var(--font-ui);
    font-size: 16px;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.7;
}

.info-text a:hover {
    color: var(--accent-strong);
    text-shadow: 0 0 12px var(--dream-glow);
}

.info-note {
    font-size: 14px;
    font-style: italic;
    color: var(--ink-soft);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.social-link {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 2px;
    border: var(--border-surreal);
    background: rgba(90, 138, 154, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(90, 138, 154, 0.2);
    background: rgba(90, 138, 154, 0.2);
}

.contact-form {
    background: var(--surface);
    backdrop-filter: blur(14px);
    border: var(--border-surreal);
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow-surreal);
    position: relative;
}

.contact-form::before {
    content: "◈";
    position: absolute;
    top: -16px;
    right: 28px;
    font-size: 22px;
    color: var(--accent);
    background: var(--bg-soft);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-surreal);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--dream-glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: var(--border-surreal);
    border-radius: 4px;
    background: rgba(12, 14, 20, 0.6);
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--ink-soft);
    opacity: 0.7;
    font-style: italic;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(232, 168, 56, 0.15);
}

/* Footer */

.footer {
    padding: 58px 0 26px;
    border-top: var(--border-surreal);
    background:
        radial-gradient(ellipse 50% 30% at 20% 0%, rgba(196, 125, 42, 0.15), transparent 50%),
        radial-gradient(ellipse 40% 25% at 80% 100%, rgba(92, 61, 110, 0.2), transparent 45%),
        var(--bg-soft);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-description {
    font-family: var(--font-ui);
    color: var(--ink-soft);
    font-size: 15px;
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.75;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-strong);
    margin-bottom: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-strong);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.newsletter-form input {
    padding: 12px 14px;
    border: var(--border-surreal);
    border-radius: 4px;
    background: rgba(12, 14, 20, 0.5);
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 15px;
}

.newsletter-form .btn-primary {
    width: 100%;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(244, 232, 216, 0.08);
    text-align: center;
    font-family: var(--font-ui);
    font-size: 14px;
    font-style: italic;
    color: var(--ink-soft);
    opacity: 0.8;
}
