:root {
    --bg: #05070d;
    --bg-soft: #0b1020;
    --text: #f8fafc;
    --muted: #a7b0c3;
    --gold: #d4af37;
    --blue: #4f8cff;
    --line: rgba(255,255,255,0.12);
    --glass: rgba(255,255,255,0.075);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(3,7,18,0.82), rgba(3,7,18,0.28));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.7px;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu a,
.logout-btn {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.22s ease;
}

.menu a:hover,
.logout-btn:hover {
    color: #fff;
}

.logout-btn {
    border: none;
    background: transparent;
    cursor: pointer;
}

.register-btn {
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f6d365, var(--gold));
    color: #111827 !important;
    box-shadow: 0 16px 40px rgba(212,175,55,0.24);
}

.gg-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 150px 7% 90px;
    background: #030712;
}

.gg-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -5;
    filter: saturate(1.08) contrast(1.08) brightness(0.64);
    transform: scale(1.03);
}

.gg-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        radial-gradient(circle at 78% 24%, rgba(79,140,255,0.38), transparent 27%),
        radial-gradient(circle at 20% 80%, rgba(212,175,55,0.20), transparent 32%),
        linear-gradient(90deg, rgba(3,7,18,0.96) 0%, rgba(3,7,18,0.78) 45%, rgba(3,7,18,0.48) 100%);
}

.gg-hero-noise {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, #000, transparent 92%);
    animation: ggGridMove 18s linear infinite;
}

@keyframes ggGridMove {
    from { background-position: 0 0; }
    to { background-position: 108px 108px; }
}

.gg-orb {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.5;
    z-index: -2;
    animation: ggFloat 9s ease-in-out infinite;
}

.gg-orb-one {
    background: rgba(79,140,255,0.45);
    right: 8%;
    top: 18%;
}

.gg-orb-two {
    background: rgba(212,175,55,0.35);
    left: 8%;
    bottom: 7%;
    animation-delay: 2s;
}

@keyframes ggFloat {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(0,-24px,0) scale(1.08); }
}

.gg-hero-inner {
    min-height: calc(100vh - 240px);
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.68fr);
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gg-hero-copy {
    max-width: 790px;
}

.gg-eyebrow,
.gg-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e8d28a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gg-eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.9);
}

.gg-hero h1 {
    max-width: 850px;
    margin: 24px 0 24px;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.93;
    letter-spacing: -0.075em;
}

.gg-hero p {
    max-width: 710px;
    color: rgba(226,232,240,0.82);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.72;
}

.gg-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.gg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.24s ease;
    border: 1px solid transparent;
}

.gg-btn:hover {
    transform: translateY(-3px);
}

.gg-btn-primary {
    color: #111827;
    background: linear-gradient(135deg, #fff1a8, var(--gold));
    box-shadow: 0 22px 60px rgba(212,175,55,0.25);
}

.gg-btn-glass {
    color: #fff;
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.18);
    backdrop-filter: blur(16px);
}

.gg-btn-dark {
    color: #fff;
    background: #0f172a;
    box-shadow: 0 18px 45px rgba(15,23,42,0.22);
}

.gg-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 740px;
    margin-top: 46px;
}

.gg-hero-proof div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.075);
    border: 1px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(18px);
}

.gg-hero-proof strong,
.gg-hero-proof span {
    display: block;
}

.gg-hero-proof strong {
    font-size: 22px;
    margin-bottom: 4px;
}

.gg-hero-proof span {
    color: var(--muted);
    font-size: 13px;
}

.gg-hero-panel {
    padding: 22px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055));
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(22px);
    box-shadow: 0 40px 130px rgba(0,0,0,0.42);
    transform: perspective(900px) rotateY(-7deg) rotateX(4deg);
    animation: ggPanelFloat 7s ease-in-out infinite;
}

@keyframes ggPanelFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -14px; }
}

.gg-panel-top {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.gg-panel-top span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.32);
}

.gg-dashboard-card,
.gg-mini-grid div,
.gg-flow {
    border-radius: 24px;
    background: rgba(3,7,18,0.52);
    border: 1px solid rgba(255,255,255,0.12);
}

.gg-dashboard-card {
    padding: 24px;
}

.gg-dashboard-card small {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gg-dashboard-card h3 {
    margin: 12px 0 8px;
    font-size: 26px;
}

.gg-dashboard-card p {
    font-size: 15px;
    line-height: 1.5;
}

.gg-progress {
    margin-top: 22px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
}

.gg-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}

.gg-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 14px 0;
}

.gg-mini-grid div {
    padding: 20px;
}

.gg-mini-grid strong,
.gg-mini-grid span {
    display: block;
}

.gg-mini-grid strong {
    font-size: 32px;
}

.gg-mini-grid span {
    color: var(--muted);
}

.gg-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    color: rgba(255,255,255,0.82);
    font-weight: 800;
}

.gg-flow i {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
}

.gg-section {
    padding: 110px 7%;
    position: relative;
}

.gg-section-dark {
    background:
        radial-gradient(circle at 80% 10%, rgba(79,140,255,0.18), transparent 35%),
        linear-gradient(180deg, #030712, #0b1020);
}

.gg-section-head {
    max-width: 880px;
    margin-bottom: 54px;
}

.gg-section h2,
.gg-cta h2 {
    margin: 14px 0 18px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.gg-section-head p,
.gg-product-copy p,
.gg-cta p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.gg-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gg-service-card {
    min-height: 245px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.045));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 90px rgba(0,0,0,0.18);
    transition: 0.25s ease;
}

.gg-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.45);
    background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06));
}

.gg-service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 25px;
}

.gg-service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.gg-service-card p {
    color: var(--muted);
    line-height: 1.62;
}

.gg-product-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
    background: #f8fafc;
    color: #0f172a;
}

.gg-product-copy p,
.gg-cta p {
    color: #475569;
    margin-bottom: 28px;
}

.gg-product-section .gg-kicker,
.gg-cta .gg-kicker {
    color: #8a6d16;
}

.gg-steps {
    display: grid;
    gap: 16px;
}

.gg-steps div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 6px 18px;
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 20px 60px rgba(15,23,42,0.08);
}

.gg-steps span {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #0f172a;
    color: var(--gold);
    font-weight: 900;
}

.gg-steps strong {
    font-size: 22px;
}

.gg-steps p {
    color: #64748b;
    line-height: 1.55;
}

.gg-cta {
    margin: 0;
    padding: 90px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(circle at 12% 20%, rgba(212,175,55,0.23), transparent 30%),
        linear-gradient(135deg, #0f172a, #030712);
}

.gg-cta div {
    max-width: 850px;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.14s; }
.reveal-delay-2 { transition-delay: 0.28s; }

.page-header {
    padding: 160px 7% 80px;
    background:
        radial-gradient(circle at top right, rgba(79,140,255,0.22), transparent 35%),
        linear-gradient(135deg, #030712, #0b1020);
    color: #fff;
}

.page-header h1 {
    font-size: clamp(42px, 6vw, 70px);
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

.page-header p {
    color: var(--muted);
    font-size: 20px;
    max-width: 760px;
    line-height: 1.6;
}

.section {
    padding: 90px 7%;
    background: #f8fafc;
    color: #0f172a;
}

.section-alt {
    background: #eef2f7;
}

.section-title {
    font-size: 42px;
    margin-bottom: 18px;
}

.section-text {
    color: #475569;
    font-size: 18px;
    max-width: 760px;
    line-height: 1.6;
    margin-bottom: 45px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.solution,
.support-box {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 18px 45px rgba(15,23,42,0.06);
}

.solution {
    padding: 28px;
    border-radius: 22px;
    transition: 0.25s ease;
}

.solution:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(15,23,42,0.13);
}

.solution .icon {
    font-size: 34px;
    margin-bottom: 18px;
}

.solution h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.solution p {
    color: #475569;
    line-height: 1.55;
}

.support-box {
    margin-top: 40px;
    padding: 36px;
    border-radius: 28px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.ticket-form {
    max-width: 1000px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    margin-bottom: 10px;
    color: #2563eb;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.14);
    border-radius: 14px;
    padding: 16px;
    color: #111827;
    font-size: 15px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.success-message {
    margin-bottom: 30px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(0,180,90,0.14);
    border: 1px solid rgba(0,180,90,0.25);
    color: #047857;
}

footer {
    padding: 34px 7%;
    background: #030712;
    color: #94a3b8;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: flex-end;
    justify-content: center;
    background: rgba(15,23,42,0.48);
    padding: 24px;
}

.cookie-box {
    width: min(760px, 100%);
    background: #ffffff;
    color: #111827;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 30px 90px rgba(15,23,42,0.28);
    border: 1px solid rgba(15,23,42,0.08);
}

.cookie-box h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #0f172a;
}

.cookie-box p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
}

.cookie-preferences {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.cookie-preferences label {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #1f2937;
}

.cookie-link {
    display: inline-block;
    margin-bottom: 22px;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 13px 22px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 800;
}

.cookie-accept { background: #2563eb; color: white; }
.cookie-reject { background: #f1f5f9; color: #111827; }
.cookie-save { background: #d4af37; color: #111827; }

.legal-content {
    max-width: 900px;
    color: #334155;
    line-height: 1.7;
}

.legal-content h2 {
    color: #0f172a;
    margin: 28px 0 12px;
}

.legal-content h3 {
    color: #2563eb;
    margin: 22px 0 8px;
}

@media (max-width: 1100px) {
    .gg-hero-inner,
    .gg-product-section {
        grid-template-columns: 1fr;
    }

    .gg-hero-panel {
        max-width: 560px;
        transform: none;
    }

    .gg-services-grid,
    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .navbar {
        position: absolute;
        padding: 18px 6%;
    }

    .menu {
        display: none;
    }

    .gg-hero,
    .gg-section,
    .gg-product-section,
    .gg-cta,
    .section,
    .page-header {
        padding-left: 6%;
        padding-right: 6%;
    }

    .gg-hero {
        padding-top: 120px;
    }

    .gg-hero-inner {
        gap: 38px;
    }

    .gg-hero-proof,
    .gg-services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .gg-hero-panel {
        border-radius: 26px;
    }

    .gg-cta,
    .support-box {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .form-group.full {
        grid-column: span 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.gg-apps-section {
    position: relative;
    background:
        radial-gradient(circle at 20% 10%, rgba(212,175,55,0.14), transparent 32%),
        radial-gradient(circle at 80% 70%, rgba(79,140,255,0.16), transparent 34%),
        #05070d;
    overflow: hidden;
}

.gg-apps-grid {
    width: min(1180px, 86%);
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gg-app-card {
    position: relative;
    padding: 30px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 30px 90px rgba(0,0,0,0.32);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: 0.28s ease;
}

.gg-app-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(212,175,55,0.28), transparent 38%, rgba(79,140,255,0.22));
    opacity: 0;
    transition: 0.28s ease;
    pointer-events: none;
}

.gg-app-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.38);
}

.gg-app-card:hover::before {
    opacity: 1;
}

.gg-app-card > * {
    position: relative;
    z-index: 2;
}

.gg-app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.gg-app-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 31px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.gg-app-badge {
    padding: 8px 12px;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, #fff1a8, var(--gold));
    font-size: 12px;
    font-weight: 900;
}

.gg-app-card h3 {
    margin-bottom: 14px;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.gg-app-card p {
    color: rgba(226,232,240,0.78);
    line-height: 1.68;
    font-size: 15px;
}

.gg-app-card ul {
    margin: 22px 0 28px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.gg-app-card li {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}

.gg-app-card li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 900;
    margin-right: 9px;
}

.gg-app-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gg-app-actions .gg-btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
}

@media (max-width: 980px) {
    .gg-apps-grid {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

.gg-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    height: 70px;
}

.gg-brand img {
    height: 160px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .gg-brand {
        height: 52px;
    }

    .gg-brand img {
        height: 110px;
    }
}

.contact-form-box {
    align-items: flex-start;
}

.gg-contact-form {
    width: min(620px, 100%);
    display: grid;
    gap: 14px;
}

.gg-contact-form textarea {
    width: 100%;
    resize: vertical;
    min-height: 150px;
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.12);
    padding: 18px;
    font-size: 15px;
    font-family: inherit;
    color: #111827;
    background: #fff;
}

.gg-contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.16);
}

.gg-login-required {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.form-error {
    color: #dc2626;
    font-weight: 700;
}

.gg-auth-body {
    min-height: 100vh;
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #030712;
    overflow-x: hidden;
    position: relative;
}

.gg-auth-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(79,140,255,0.20), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(212,175,55,0.16), transparent 30%),
        linear-gradient(135deg, #030712, #0b1020);
    z-index: -2;
}

.gg-auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.gg-auth-logo img {
    width: 240px;
    margin-bottom: 28px;
    filter: drop-shadow(0 10px 40px rgba(212,175,55,0.18));
}

.gg-auth-card {
    width: min(520px, 100%);
    padding: 38px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(24px);
    box-shadow: 0 30px 90px rgba(0,0,0,0.32);
}

.gg-auth-card label {
    color: #ffffff;
    font-weight: 700;
}

.gg-auth-card input:not([type="checkbox"]),
.gg-auth-card select {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    padding: 0 16px;
}

.gg-auth-card input:focus,
.gg-auth-card select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.14);
}

.gg-auth-card .text-gray-600,
.gg-auth-card .text-sm {
    color: rgba(255,255,255,0.72) !important;
}

.gg-auth-card button {
    background: linear-gradient(135deg, #fff1a8, var(--gold));
    color: #111827;
    border: none;
    border-radius: 999px;
    min-height: 48px;
    padding: 0 22px;
    font-weight: 900;
    cursor: pointer;
}

.gg-auth-card button:hover {
    transform: translateY(-2px);
}

.gg-register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.gg-full {
    grid-column: span 2;
}

@media (max-width: 768px) {

    .gg-register-grid {
        grid-template-columns: 1fr;
    }

    .gg-full {
        grid-column: span 1;
    }

}

.gg-register-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.gg-register-actions a {
    color: rgba(255,255,255,0.72) !important;
    text-decoration: underline;
    font-size: 14px;
}

.gg-register-actions button {
    min-width: 160px;
}

.gg-auth-card select option {
    background: #111827;
    color: #ffffff;
}

.gg-auth-card select option:checked {
    background: #d4af37;
    color: #111827;
}

.form-error {
    margin-top: 8px;
    color: #f87171;
    font-size: 13px;
    font-weight: 600;
}

.tickets-table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 24px 70px rgba(15,23,42,0.08);
}

.tickets-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.tickets-table th,
.tickets-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(15,23,42,0.08);
}

.tickets-table th {
    color: #2563eb;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tickets-table td {
    color: #0f172a;
}

.ticket-priority,
.ticket-status {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.priority-baja {
    background: #dcfce7;
    color: #166534;
}

.priority-media {
    background: #fef9c3;
    color: #854d0e;
}

.priority-alta {
    background: #ffedd5;
    color: #9a3412;
}

.priority-urgente {
    background: #fee2e2;
    color: #991b1b;
}

.status-abierto {
    background: #dbeafe;
    color: #1e40af;
}

.status-cerrado {
    background: #e5e7eb;
    color: #374151;
}

.ticket-close-btn {
    border: none;
    border-radius: 999px;
    padding: 9px 14px;
    background: linear-gradient(135deg, #fff1a8, var(--gold));
    color: #111827;
    font-weight: 900;
    cursor: pointer;
}

.ticket-close-btn:hover {
    transform: translateY(-2px);
}

.ticket-closed-text {
    color: #64748b;
    font-weight: 800;
}

.ticket-description {
    max-width: 340px;
    white-space: normal;
    line-height: 1.45;
    color: #334155;
}

.ticket-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ticket-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
}

.ticket-view-btn:hover {
    opacity: 0.9;
}

.ticket-detail-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 24px 70px rgba(15,23,42,0.08);
}

.ticket-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ticket-detail-grid span {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ticket-detail-grid strong {
    color: #0f172a;
    font-size: 18px;
}

.ticket-description-box {
    margin-bottom: 40px;
}

.ticket-description-box h3,
.ticket-image-box h3 {
    margin-bottom: 16px;
    color: #0f172a;
}

.ticket-description-box p {
    line-height: 1.8;
    color: #334155;
    white-space: pre-wrap;
}

.ticket-image-box img {
    width: 100%;
    max-width: 700px;
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 24px 70px rgba(15,23,42,0.10);
}

.ticket-detail-actions {
    margin-top: 40px;
    display: flex;
    gap: 14px;
}

@media (max-width: 900px) {

    .ticket-detail-grid {
        grid-template-columns: 1fr;
    }

}

.gg-auth-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: auto;
    margin: 0;
    accent-color: var(--gold);
    cursor: pointer;
}

.gg-auth-card .remember-row,
.gg-auth-card label:has(input[type="checkbox"]) {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 600;
}

.gg-auth-card .remember-row span,
.gg-auth-card label:has(input[type="checkbox"]) span {
    color: rgba(255,255,255,0.78);
}

.gg-auth-card .flex.items-center.justify-end,
.gg-auth-card .gg-login-actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.gg-auth-card .flex.items-center.justify-end a,
.gg-auth-card .gg-login-actions a {
    color: rgba(255,255,255,0.72) !important;
    text-decoration: underline;
    font-size: 14px;
}

.gg-auth-card .flex.items-center.justify-end button,
.gg-auth-card .gg-login-actions button {
    flex-shrink: 0;
}

.gg-auth-card .flex.items-center.justify-end,
.gg-auth-card .gg-login-actions {
    justify-content: flex-start;
}

.gg-auth-card button[type="submit"] {
    margin-left: 40px;
}

.gg-dashboard-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    color: #111827;
    background: linear-gradient(135deg, #fff1a8, var(--gold));
    box-shadow: 0 18px 50px rgba(212,175,55,0.24);
    transition: 0.22s ease;
}

.gg-dashboard-action:hover {
    transform: translateY(-3px);
}