/* =========================================================
   RACKET SCORER
   Main Website Stylesheet
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {
    --bg-dark: #070b12;
    --bg-dark-2: #0b111b;
    --bg-card: #101722;
    --bg-card-light: #141d2a;

    --primary: #a8ff3e;
    --primary-dark: #7ed126;

    --secondary: #4c7dff;
    --secondary-light: #6d91ff;

    --white: #ffffff;
    --text: #f4f7fb;
    --text-light: #b5bfce;
    --text-muted: #7d8898;

    --border: rgba(255, 255, 255, 0.09);
    --border-light: rgba(168, 255, 62, 0.2);

    --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1180px;

    --transition: all 0.3s ease;
}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section-padding {
    padding: 110px 0;
}


/* =========================================================
   03. COMMON
========================================================= */

.text-center {
    text-align: center;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading h2,
.intro-content h2,
.security-content h2,
.delete-box h2,
.cta-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.section-heading h2 span,
.intro-content h2 span,
.security-content h2 span,
.delete-box h2 span,
.cta-content h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 20px;
}


/* =========================================================
   04. HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(7, 11, 18, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrapper {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* Logo */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;

    white-space: nowrap;
}

.logo-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #071009;
    background: var(--primary);

    font-size: 19px;
    font-weight: 800;

    box-shadow: 0 0 25px rgba(168, 255, 62, 0.25);
}

.logo-highlight {
    color: var(--primary);
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    position: relative;

    color: var(--text-light);

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 100%;
    height: 2px;

    background: var(--primary);
    border-radius: 20px;
}

.main-nav .nav-delete {
    padding: 10px 17px;

    border: 1px solid var(--border-light);
    border-radius: 30px;

    color: var(--primary);
}

.main-nav .nav-delete:hover {
    background: var(--primary);
    color: #071009;
}


/* Mobile Menu Button */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--bg-card);

    color: var(--white);
    font-size: 20px;
}


/* =========================================================
   05. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    color: #071009;
    background: var(--primary);

    box-shadow: 0 10px 30px rgba(168, 255, 62, 0.18);
}

.btn-primary:hover {
    transform: translateY(-3px);

    background: #baff63;

    box-shadow: 0 15px 40px rgba(168, 255, 62, 0.3);
}

.btn-outline {
    color: var(--white);

    background: transparent;

    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);

    transform: translateY(-3px);
}


/* =========================================================
   06. HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    padding: 150px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(76, 125, 255, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 70%,
            rgba(168, 255, 62, 0.07),
            transparent 30%
        ),
        var(--bg-dark);
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}


/* Hero Content */

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 14px;

    border: 1px solid var(--border-light);
    border-radius: 30px;

    background: rgba(168, 255, 62, 0.05);

    color: var(--text-light);

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 25px;
}

.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow: 0 0 12px var(--primary);
}

.hero-content h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.hero-content h1 span {
    display: block;
    color: var(--primary);
}

.hero-content > p {
    max-width: 610px;

    color: var(--text-light);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 45px;
}


/* Hero Trust */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--white);

    font-size: 17px;
    font-weight: 800;
}

.trust-item span {
    color: var(--text-muted);

    font-size: 11px;
}

.trust-line {
    width: 1px;
    height: 35px;

    background: var(--border);
}


/* =========================================================
   07. HERO SCORE CARD
========================================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.score-card {
    position: relative;

    width: min(100%, 470px);

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transform: rotate(1deg);
}


/* Card Top */

.score-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.score-card-top > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow: 0 0 12px var(--primary);
}

.sport-label {
    color: var(--primary);
}


/* Players */

.players {
    padding: 30px 0;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.player {
    display: grid;

    grid-template-columns: 48px 1fr auto;

    align-items: center;

    gap: 14px;

    padding: 15px;

    border: 1px solid transparent;

    border-radius: 15px;

    transition: var(--transition);
}

.player-active {
    background: rgba(168, 255, 62, 0.06);
    border-color: rgba(168, 255, 62, 0.12);
}

.player-avatar {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #071009;
    background: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.avatar-two {
    background: #4c7dff;
    color: white;
}

.player-details {
    display: flex;
    flex-direction: column;
}

.player-details strong {
    font-size: 14px;
}

.player-details small {
    color: var(--text-muted);

    font-size: 10px;

    margin-top: 2px;
}

.player-score {
    font-family: "Space Grotesk", sans-serif;

    color: var(--white);

    font-size: 42px;
    font-weight: 700;
}

.score-divider {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;
}

.score-divider::before,
.score-divider::after {
    content: "";

    height: 1px;

    flex: 1;

    background: var(--border);
}


/* Progress */

.match-progress {
    padding: 18px 0;

    border-top: 1px solid var(--border);
}

.progress-label {
    display: flex;
    justify-content: space-between;

    color: var(--text-muted);

    font-size: 10px;

    margin-bottom: 10px;
}

.progress-bar {
    height: 5px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.07);
}

.progress-bar span {
    display: block;

    width: 68%;
    height: 100%;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
}


/* Card Footer */

.score-card-footer {
    display: flex;
    justify-content: space-between;

    padding-top: 18px;

    color: var(--text-muted);

    font-size: 10px;
}

.score-card-footer span:last-child {
    color: var(--primary);
}


/* Floating Stats */

.floating-stat {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 17px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: rgba(15, 22, 33, 0.88);

    backdrop-filter: blur(15px);

    box-shadow: var(--shadow);

    animation: floating 4s ease-in-out infinite;
}

.stat-one {
    top: 70px;
    right: -5px;
}

.stat-two {
    bottom: 65px;
    left: -20px;

    animation-delay: 1.5s;
}

.stat-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: #071009;
    background: var(--primary);

    font-size: 13px;
}

.floating-stat strong {
    display: block;

    font-size: 12px;
}

.floating-stat small {
    display: block;

    color: var(--text-muted);

    font-size: 9px;
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================================
   08. SPORTS
========================================================= */

.sports-section {
    background: var(--bg-dark-2);
}

.sports-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.sport-card {
    position: relative;

    padding: 30px 25px;

    min-height: 285px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--bg-card);

    transition: var(--transition);
}

.sport-card::before {
    content: "";

    position: absolute;

    top: -70px;
    right: -70px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: rgba(168, 255, 62, 0.05);

    transition: var(--transition);
}

.sport-card:hover {
    transform: translateY(-8px);

    border-color: rgba(168, 255, 62, 0.25);

    box-shadow: var(--shadow);
}

.sport-card:hover::before {
    transform: scale(1.5);
}

.sport-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    margin-bottom: 25px;

    font-size: 28px;

    background: rgba(168, 255, 62, 0.08);

    border: 1px solid rgba(168, 255, 62, 0.12);
}

.sport-card h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;

    margin-bottom: 10px;
}

.sport-card p {
    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.sport-link {
    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   09. INTRO / ABOUT
========================================================= */

.intro-section {
    background: var(--bg-dark);
}

.intro-grid {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 90px;
}

.intro-visual {
    position: relative;
}

.visual-box {
    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(168, 255, 62, 0.08),
            transparent 40%
        ),
        var(--bg-card);

    box-shadow: var(--shadow);
}

.visual-header {
    display: flex;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 800;
}

.online-status {
    color: var(--primary);
}

.visual-score {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 30px;

    padding: 50px 20px;
}

.visual-score div {
    text-align: center;
}

.visual-score small {
    display: block;

    color: var(--text-muted);

    font-size: 9px;

    margin-bottom: 10px;
}

.visual-score strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: 64px;
}

.visual-score > span {
    color: var(--text-muted);
    font-size: 20px;
}

.visual-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);

    padding-top: 20px;
}

.visual-stats div {
    text-align: center;

    border-right: 1px solid var(--border);
}

.visual-stats div:last-child {
    border: 0;
}

.visual-stats span {
    display: block;

    color: var(--text-muted);

    font-size: 10px;
}

.visual-stats strong {
    display: block;

    font-size: 17px;

    margin-top: 3px;
}

.intro-content > p {
    color: var(--text-light);

    font-size: 15px;

    margin-top: 20px;
}

.text-link {
    display: inline-block;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    margin-top: 25px;
}

.text-link:hover {
    transform: translateX(5px);
}


/* =========================================================
   10. FEATURES
========================================================= */

.features-section {
    background: var(--bg-dark-2);
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.feature-card {
    position: relative;

    padding: 32px;

    min-height: 270px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--bg-card);

    overflow: hidden;

    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-7px);

    border-color: rgba(168, 255, 62, 0.25);

    background: var(--bg-card-light);
}

.feature-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(255, 255, 255, 0.07);

    font-family: "Space Grotesk", sans-serif;

    font-size: 50px;
    font-weight: 700;
}

.feature-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #071009;
    background: var(--primary);

    font-size: 20px;
    font-weight: 800;

    margin-bottom: 25px;
}

.feature-card h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 19px;

    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);

    font-size: 13px;
}


/* =========================================================
   11. HOW IT WORKS
========================================================= */

.how-section {
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.step-card {
    position: relative;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--bg-card);

    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(168, 255, 62, 0.25);

    transform: translateY(-5px);
}

.step-number {
    color: var(--primary);

    font-family: "Space Grotesk", sans-serif;

    font-size: 15px;
    font-weight: 800;

    margin-bottom: 25px;
}

.step-card h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;

    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);

    font-size: 13px;
}


/* =========================================================
   12. SECURITY
========================================================= */

.security-section {
    background: var(--bg-dark-2);
}

.security-box {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 70px;

    align-items: center;

    padding: 65px;

    border: 1px solid var(--border);

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(76, 125, 255, 0.08),
            transparent 35%
        ),
        var(--bg-card);
}

.security-content > p {
    max-width: 650px;

    color: var(--text-light);

    margin-top: 20px;
}

.security-points {
    display: flex;

    flex-direction: column;

    gap: 20px;

    margin: 30px 0;
}

.security-point {
    display: flex;

    gap: 15px;
}

.security-point > span {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #071009;
    background: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.security-point strong {
    font-size: 14px;
}

.security-point p {
    color: var(--text-muted);

    font-size: 12px;

    margin-top: 2px;
}


/* Security Card */

.security-card {
    padding: 35px;

    border: 1px solid rgba(168, 255, 62, 0.15);

    border-radius: 22px;

    background: rgba(168, 255, 62, 0.035);
}

.security-card-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: var(--primary);

    font-size: 25px;

    margin-bottom: 22px;
}

.security-card h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;

    margin-bottom: 10px;
}

.security-card > p {
    color: var(--text-muted);

    font-size: 13px;
}

.security-line {
    height: 1px;

    background: var(--border);

    margin: 25px 0;
}

.security-mini {
    display: flex;
    justify-content: space-between;

    padding: 10px 0;

    font-size: 11px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.security-mini span {
    color: var(--text-muted);
}

.security-mini strong {
    color: var(--primary);
}


/* =========================================================
   13. TECHNOLOGY
========================================================= */

.services-section {
    background: var(--bg-dark);
}

.technology-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    max-width: 900px;

    margin: 0 auto;
}

.technology-card {
    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--bg-card);

    transition: var(--transition);
}

.technology-card:hover {
    transform: translateY(-6px);

    border-color: rgba(168, 255, 62, 0.2);
}

.tech-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(76, 125, 255, 0.12);

    color: var(--secondary-light);

    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;
    font-weight: 800;

    margin-bottom: 22px;
}

.technology-card h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;

    margin-bottom: 10px;
}

.technology-card p {
    color: var(--text-muted);

    font-size: 13px;
}


/* =========================================================
   14. DELETE ACCOUNT
========================================================= */

.delete-section {
    background: var(--bg-dark-2);
}

.delete-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 55px;

    border: 1px solid rgba(168, 255, 62, 0.15);

    border-radius: 25px;

    background:
        linear-gradient(
            120deg,
            rgba(168, 255, 62, 0.07),
            rgba(76, 125, 255, 0.04)
        );
}

.delete-box p {
    max-width: 700px;

    color: var(--text-light);

    font-size: 14px;

    margin-top: 15px;
}

.delete-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   15. FINAL CTA
========================================================= */

.cta-section {
    position: relative;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(168, 255, 62, 0.08),
            transparent 40%
        ),
        var(--bg-dark);
}

.cta-content {
    max-width: 750px;

    margin: 0 auto;
}

.cta-content p {
    color: var(--text-light);

    font-size: 16px;

    max-width: 600px;

    margin: 20px auto 30px;
}


/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
    padding-top: 75px;

    background: #05080d;

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 360px;

    color: var(--text-muted);

    font-size: 13px;

    margin-top: 20px;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links h4 {
    color: var(--white);

    font-size: 13px;

    margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
    color: var(--text-muted);

    font-size: 12px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);

    transform: translateX(3px);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

    border-top: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================================================
   17. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #263141;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* =========================================================
   18. SELECTION
========================================================= */

::selection {
    background: var(--primary);

    color: #071009;
}


/* =========================================================
   19. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .hero-container {
        gap: 40px;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-box {
        padding: 45px;

        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-links:last-child {
        display: none;
    }
}


/* =========================================================
   20. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 800px) {

    .section-padding {
        padding: 75px 0;
    }


    /* Header */

    .nav-wrapper {
        min-height: 70px;
    }

    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: absolute;

        top: 70px;
        left: 4%;

        width: 92%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px;

        border: 1px solid var(--border);

        border-radius: 16px;

        background: rgba(11, 17, 27, 0.98);

        backdrop-filter: blur(20px);

        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 10px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .main-nav a.active::after {
        display: none;
    }

    .main-nav .nav-delete {
        margin-top: 10px;

        text-align: center;

        border: 1px solid var(--border-light);
    }


    /* Hero */

    .hero-section {
        min-height: auto;

        padding: 130px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(43px, 12vw, 62px);

        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 420px;

        margin-top: 10px;
    }

    .floating-stat {
        display: none;
    }


    /* Intro */

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* Security */

    .security-box {
        grid-template-columns: 1fr;

        padding: 35px 25px;
    }


    /* Delete */

    .delete-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-links:last-child {
        display: flex;
    }

}


/* =========================================================
   21. RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 550px) {

    .container {
        width: 90%;
    }

    .section-padding {
        padding: 65px 0;
    }


    /* Hero */

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 14px;
    }

    .trust-line {
        height: 30px;
    }

    .trust-item strong {
        font-size: 14px;
    }

    .trust-item span {
        font-size: 9px;
    }


    /* Score Card */

    .score-card {
        padding: 18px;

        border-radius: 20px;
    }

    .player {
        padding: 10px;
    }

    .player-avatar {
        width: 40px;
        height: 40px;

        border-radius: 11px;
    }

    .player-score {
        font-size: 34px;
    }


    /* Sports */

    .sports-grid {
        grid-template-columns: 1fr;
    }

    .sport-card {
        min-height: auto;
    }


    /* Features */

    .features-grid {
        grid-template-columns: 1fr;
    }


    /* Steps */

    .steps-grid {
        grid-template-columns: 1fr;
    }


    /* Visual */

    .visual-box {
        padding: 20px;
    }

    .visual-score {
        gap: 15px;

        padding: 35px 10px;
    }

    .visual-score strong {
        font-size: 48px;
    }


    /* Technology */

    .technology-grid {
        grid-template-columns: 1fr;
    }


    /* Delete */

    .delete-actions {
        width: 100%;

        flex-direction: column;
    }

    .delete-actions .btn {
        width: 100%;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-links:last-child {
        display: flex;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   22. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}

/* =========================================================
   RACKET SCORER
   ABOUT PAGE STYLES
   Matches Main Website Dark Theme
========================================================= */

/* =========================================================
   JAN SANWAD
   ABOUT US PAGE STYLES
========================================================= */


/* =========================================================
   COMMON
========================================================= */

.section-padding {
    padding: 100px 0;
}

.js-section-tag {
    display: inline-block;
    color: #a8ff3e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.js-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.js-section-heading h2,
.js-about-content h2,
.js-benefits-content h2 {
    color: #ffffff;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.js-section-heading h2 span,
.js-about-content h2 span,
.js-benefits-content h2 span {
    color: #a8ff3e;
}

.js-section-heading p {
    color: #9ca7b5;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   PAGE BANNER
========================================================= */

.js-about-banner {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    background:
        url("../images/about-banner.jpg")
        center center / cover no-repeat;
    overflow: hidden;
}

.js-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 11, 18, 0.97),
        rgba(7, 11, 18, 0.82),
        rgba(7, 11, 18, 0.55)
    );
}

.js-about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.js-small-title {
    display: inline-block;
    color: #a8ff3e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.js-about-banner h1 {
    color: #ffffff;
    font-size: 58px;
    line-height: 1.12;
    font-weight: 700;
    margin: 0 0 25px;
}

.js-about-banner h1 span {
    color: #a8ff3e;
}

.js-about-banner p {
    max-width: 650px;
    color: #b5beca;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.js-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.js-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.js-breadcrumb i {
    color: #a8ff3e;
}

.js-breadcrumb span {
    color: #8994a2;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.js-about-intro {
    background: #070b12;
}

.js-about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.js-about-image-wrap {
    position: relative;
}

.js-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.js-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(7, 11, 18, 0.45)
    );
}

.js-about-image img {
    display: block;
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.js-experience-box {
    position: absolute;
    right: -35px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #101722;
    border: 1px solid rgba(168, 255, 62, 0.25);
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.js-experience-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(168, 255, 62, 0.1);
    color: #a8ff3e;
    font-size: 20px;
}

.js-experience-box strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
}

.js-experience-box span {
    display: block;
    color: #8994a2;
    font-size: 13px;
    margin-top: 4px;
}

.js-about-content h2 {
    margin-bottom: 25px;
}

.js-about-content p {
    color: #9ca7b5;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.js-about-content .js-lead {
    color: #c4ccd5;
    font-size: 17px;
}

.js-about-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
}

.js-about-point {
    display: flex;
    gap: 15px;
}

.js-point-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 255, 62, 0.1);
    color: #a8ff3e;
    border-radius: 50%;
    font-size: 13px;
}

.js-about-point h4 {
    color: #ffffff;
    font-size: 17px;
    margin: 0 0 5px;
}

.js-about-point p {
    margin: 0;
    font-size: 14px;
}


/* =========================================================
   WHY JAN SANWAD
========================================================= */

.js-why-section {
    background: #0b111b;
}

.js-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.js-feature-card {
    position: relative;
    background: #101722;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 35px 28px;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.js-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 255, 62, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.js-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(168, 255, 62, 0.1);
    color: #a8ff3e;
    font-size: 24px;
    margin-bottom: 25px;
}

.js-feature-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.js-feature-card p {
    color: #929dab;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.js-feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a8ff3e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.js-feature-card a i {
    transition: transform 0.3s ease;
}

.js-feature-card:hover a i {
    transform: translateX(5px);
}


/* =========================================================
   MISSION / VISION
========================================================= */

.js-mission-section {
    background: #070b12;
}

.js-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.js-mission-card {
    position: relative;
    padding: 45px;
    background: #101722;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.js-mission-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(168, 255, 62, 0.05);
}

.js-mission-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 255, 62, 0.1);
    color: #a8ff3e;
    border-radius: 14px;
    font-size: 25px;
    margin-bottom: 25px;
}

.js-mission-card > span {
    color: #a8ff3e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.js-mission-card h3 {
    color: #ffffff;
    font-size: 28px;
    margin: 12px 0 15px;
}

.js-mission-card p {
    position: relative;
    z-index: 2;
    color: #929dab;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   BENEFITS
========================================================= */

.js-benefits-section {
    background: #0b111b;
}

.js-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.js-benefits-content p {
    color: #9ca7b5;
    font-size: 16px;
    line-height: 1.8;
}

.js-benefit-list {
    margin-top: 30px;
}

.js-benefit-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d5dbe2;
    font-size: 15px;
    margin-bottom: 17px;
}

.js-benefit-list i {
    color: #a8ff3e;
    font-size: 17px;
}

.js-benefits-image {
    position: relative;
}

.js-benefits-image img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.js-floating-card {
    position: absolute;
    left: -35px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #101722;
    border: 1px solid rgba(168, 255, 62, 0.25);
    border-radius: 13px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.js-floating-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 255, 62, 0.1);
    color: #a8ff3e;
    border-radius: 9px;
}

.js-floating-card strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.js-floating-card span {
    display: block;
    color: #8994a2;
    font-size: 12px;
    margin-top: 3px;
}


/* =========================================================
   CTA
========================================================= */

.js-about-cta {
    position: relative;
    padding: 110px 0;
    background:
        url("../images/about-cta.jpg")
        center center / cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.js-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 11, 18, 0.88);
}

.js-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.js-cta-content h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.js-cta-content h2 span {
    color: #a8ff3e;
}

.js-cta-content p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #a5afbb;
    font-size: 16px;
    line-height: 1.8;
}

.js-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.js-btn-primary,
.js-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 160px;
    padding: 15px 28px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.js-btn-primary {
    background: #a8ff3e;
    color: #071008;
}

.js-btn-primary:hover {
    background: #ffffff;
    color: #071008;
}

.js-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.js-btn-outline:hover {
    border-color: #a8ff3e;
    color: #a8ff3e;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .js-about-grid,
    .js-benefits-grid {
        gap: 50px;
    }

    .js-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .js-about-banner h1 {
        font-size: 50px;
    }

}


@media (max-width: 991px) {

    .section-padding {
        padding: 75px 0;
    }

    .js-about-grid,
    .js-benefits-grid {
        grid-template-columns: 1fr;
    }

    .js-about-image {
        max-width: 650px;
        margin: auto;
    }

    .js-about-content {
        max-width: 750px;
    }

    .js-mission-grid {
        grid-template-columns: 1fr;
    }

    .js-about-banner {
        min-height: 400px;
    }

    .js-about-banner h1 {
        font-size: 44px;
    }

    .js-section-heading h2,
    .js-about-content h2,
    .js-benefits-content h2 {
        font-size: 38px;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 60px 0;
    }

    .js-about-banner {
        min-height: 390px;
    }

    .js-about-banner h1 {
        font-size: 36px;
    }

    .js-about-banner p {
        font-size: 15px;
    }

    .js-feature-grid {
        grid-template-columns: 1fr;
    }

    .js-section-heading h2,
    .js-about-content h2,
    .js-benefits-content h2 {
        font-size: 32px;
    }

    .js-about-image img {
        height: 430px;
    }

    .js-experience-box {
        right: 15px;
        bottom: 20px;
    }

    .js-mission-card {
        padding: 30px;
    }

    .js-mission-card h3 {
        font-size: 24px;
    }

    .js-benefits-image img {
        height: 400px;
    }

    .js-floating-card {
        left: 15px;
        bottom: 20px;
    }

    .js-cta-content h2 {
        font-size: 32px;
    }

}


@media (max-width: 480px) {

    .js-about-banner h1 {
        font-size: 30px;
    }

    .js-about-image img {
        height: 350px;
    }

    .js-experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
    }

    .js-cta-buttons {
        flex-direction: column;
    }

    .js-btn-primary,
    .js-btn-outline {
        width: 100%;
    }

}

/* =========================================================
   RACKET SCORER
   PRIVACY POLICY PAGE
========================================================= */


/* =========================================================
   PRIVACY BANNER
========================================================= */

.policy-banner {
    position: relative;
    min-height: 420px;

    display: flex;
    align-items: center;

    background:
        url("../images/privacy-banner.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}

.policy-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 18, 0.97),
            rgba(7, 11, 18, 0.82),
            rgba(7, 11, 18, 0.60)
        );
}

.policy-banner-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.policy-small-title {
    display: inline-block;

    color: #a8ff3e;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.policy-banner h1 {
    color: #ffffff;

    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;

    margin: 0 0 20px;
}

.policy-banner h1 span {
    color: #a8ff3e;
}

.policy-banner p {
    max-width: 680px;

    color: #aeb8c5;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 25px;
}

.policy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 14px;
}

.policy-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.policy-breadcrumb a:hover {
    color: #a8ff3e;
}

.policy-breadcrumb i {
    color: #a8ff3e;
    font-style: normal;
}

.policy-breadcrumb span {
    color: #8994a2;
}


/* =========================================================
   PRIVACY SECTION
========================================================= */

.privacy-section {
    background: #070b12;
    padding: 90px 0;
}

.privacy-layout {
    display: grid;

    grid-template-columns: 270px 1fr;

    gap: 55px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.privacy-sidebar {
    position: sticky;
    top: 110px;
}

.privacy-sidebar-card {
    background: #101722;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 15px;

    padding: 25px 0;

    overflow: hidden;
}

.privacy-sidebar-card h3 {
    color: #ffffff;

    font-size: 19px;

    padding: 0 25px 18px;

    margin: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.privacy-sidebar-card a {
    display: block;

    color: #929dab;

    font-size: 14px;

    text-decoration: none;

    padding: 11px 25px;

    border-left: 2px solid transparent;

    transition: all 0.3s ease;
}

.privacy-sidebar-card a:hover {
    color: #a8ff3e;

    background: rgba(168, 255, 62, 0.05);

    border-left-color: #a8ff3e;

    padding-left: 30px;
}


/* =========================================================
   CONTENT
========================================================= */

.privacy-content {
    min-width: 0;
}

.privacy-card {
    position: relative;

    background: #101722;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 16px;

    padding: 40px 45px;

    margin-bottom: 25px;

    scroll-margin-top: 100px;
}

.privacy-card:last-child {
    margin-bottom: 0;
}

.privacy-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: rgba(168, 255, 62, 0.10);

    border: 1px solid rgba(168, 255, 62, 0.18);

    border-radius: 10px;

    color: #a8ff3e;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.privacy-card h2 {
    color: #ffffff;

    font-size: 28px;
    line-height: 1.3;

    margin: 0 0 20px;
}

.privacy-card h3 {
    color: #ffffff;

    font-size: 18px;

    margin: 28px 0 12px;
}

.privacy-card p {
    color: #99a4b1;

    font-size: 15px;

    line-height: 1.85;

    margin: 0 0 17px;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.privacy-card ul {
    margin: 15px 0 20px;

    padding-left: 22px;
}

.privacy-card li {
    color: #99a4b1;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 9px;

    padding-left: 5px;
}

.privacy-card li::marker {
    color: #a8ff3e;
}


/* =========================================================
   POLICY UPDATE
========================================================= */

.policy-update {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-top: 15px;

    padding: 10px 15px;

    background: rgba(168, 255, 62, 0.06);

    border: 1px solid rgba(168, 255, 62, 0.12);

    border-radius: 7px;

    color: #aeb8c5;

    font-size: 13px;
}

.policy-update strong {
    color: #ffffff;
}


/* =========================================================
   CHECK LIST
========================================================= */

.policy-list {
    margin-top: 25px;
}

.policy-list > div {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 16px;
}

.policy-list > div > span {
    flex: 0 0 25px;

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(168, 255, 62, 0.10);

    border-radius: 50%;
}

.policy-list i {
    color: #a8ff3e;

    font-size: 12px;

    font-style: normal;
}

.policy-list p {
    margin: 0;

    padding-top: 1px;
}


/* =========================================================
   CONTENT LINKS
========================================================= */

.privacy-card a {
    color: #a8ff3e;

    text-decoration: none;

    font-weight: 600;
}

.privacy-card a:hover {
    color: #ffffff;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.privacy-contact-card {
    background:
        linear-gradient(
            135deg,
            #101722,
            #0d141f
        );

    border-color: rgba(168, 255, 62, 0.15);
}

.privacy-contact-btn {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 15px;

    padding: 13px 22px;

    background: #a8ff3e;

    color: #071008 !important;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700 !important;

    transition: all 0.3s ease;
}

.privacy-contact-btn:hover {
    background: #ffffff;

    color: #071008 !important;
}

.privacy-contact-btn span {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.privacy-contact-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .policy-banner {
        min-height: 380px;
    }

    .policy-banner h1 {
        font-size: 46px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .privacy-sidebar {
        position: static;
    }

    .privacy-sidebar-card {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }

    .privacy-sidebar-card h3 {
        grid-column: 1 / -1;
    }

}


@media (max-width: 767px) {

    .policy-banner {
        min-height: 350px;
    }

    .policy-banner h1 {
        font-size: 38px;
    }

    .policy-banner p {
        font-size: 15px;
    }

    .privacy-section {
        padding: 60px 0;
    }

    .privacy-card {
        padding: 30px 25px;
    }

    .privacy-card h2 {
        font-size: 24px;
    }

    .privacy-sidebar-card {
        display: block;
    }

}


@media (max-width: 480px) {

    .policy-banner h1 {
        font-size: 32px;
    }

    .privacy-card {
        padding: 25px 20px;
    }

    .privacy-card p,
    .privacy-card li {
        font-size: 14px;
    }

}


/* =========================================================
   RACKET SCORER
   TERMS & CONDITIONS PAGE
========================================================= */


/* =========================================================
   TERMS BANNER
========================================================= */

.terms-banner {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;

    background:
        url("../images/terms-banner.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}

.terms-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 18, 0.97),
            rgba(7, 11, 18, 0.82),
            rgba(7, 11, 18, 0.60)
        );
}

.terms-banner-content {
    position: relative;

    z-index: 2;

    max-width: 800px;
}

.terms-small-title {
    display: inline-block;

    color: #a8ff3e;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.terms-banner h1 {
    color: #ffffff;

    font-size: 56px;

    line-height: 1.15;

    font-weight: 700;

    margin: 0 0 20px;
}

.terms-banner h1 span {
    color: #a8ff3e;
}

.terms-banner p {
    max-width: 680px;

    color: #aeb8c5;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.terms-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;
}

.terms-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: 0.3s;
}

.terms-breadcrumb a:hover {
    color: #a8ff3e;
}

.terms-breadcrumb i {
    color: #a8ff3e;

    font-style: normal;
}

.terms-breadcrumb span {
    color: #8994a2;
}


/* =========================================================
   TERMS SECTION
========================================================= */

.terms-section {
    background: #070b12;

    padding: 90px 0;
}

.terms-layout {
    display: grid;

    grid-template-columns: 270px 1fr;

    gap: 55px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.terms-sidebar {
    position: sticky;

    top: 110px;
}

.terms-sidebar-card {
    background: #101722;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 15px;

    padding: 25px 0;

    overflow: hidden;
}

.terms-sidebar-card h3 {
    color: #ffffff;

    font-size: 19px;

    padding: 0 25px 18px;

    margin: 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}

.terms-sidebar-card a {
    display: block;

    color: #929dab;

    font-size: 14px;

    text-decoration: none;

    padding: 10px 25px;

    border-left: 2px solid transparent;

    transition: all 0.3s ease;
}

.terms-sidebar-card a:hover {
    color: #a8ff3e;

    background: rgba(168, 255, 62, 0.05);

    border-left-color: #a8ff3e;

    padding-left: 30px;
}


/* =========================================================
   TERMS CONTENT
========================================================= */

.terms-content {
    min-width: 0;
}

.terms-card {
    position: relative;

    background: #101722;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 16px;

    padding: 40px 45px;

    margin-bottom: 25px;

    scroll-margin-top: 100px;
}

.terms-card:last-child {
    margin-bottom: 0;
}

.terms-number {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    background:
        rgba(168, 255, 62, 0.10);

    border:
        1px solid rgba(168, 255, 62, 0.18);

    border-radius: 10px;

    color: #a8ff3e;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;
}

.terms-card h2 {
    color: #ffffff;

    font-size: 28px;

    line-height: 1.3;

    margin: 0 0 20px;
}

.terms-card h3 {
    color: #ffffff;

    font-size: 18px;

    margin: 28px 0 12px;
}

.terms-card p {
    color: #99a4b1;

    font-size: 15px;

    line-height: 1.85;

    margin: 0 0 17px;
}

.terms-card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.terms-card ul {
    margin: 15px 0 20px;

    padding-left: 22px;
}

.terms-card li {
    color: #99a4b1;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 9px;

    padding-left: 5px;
}

.terms-card li::marker {
    color: #a8ff3e;
}


/* =========================================================
   LAST UPDATED
========================================================= */

.terms-update {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-top: 15px;

    padding: 10px 15px;

    background:
        rgba(168, 255, 62, 0.06);

    border:
        1px solid rgba(168, 255, 62, 0.12);

    border-radius: 7px;

    color: #aeb8c5;

    font-size: 13px;
}

.terms-update strong {
    color: #ffffff;
}


/* =========================================================
   IMPORTANT HIGHLIGHT
========================================================= */

.terms-highlight {
    margin-top: 25px;

    padding: 20px 22px;

    background:
        rgba(168, 255, 62, 0.06);

    border-left:
        3px solid #a8ff3e;

    border-radius: 0 8px 8px 0;

    color: #aeb8c5;

    font-size: 14px;

    line-height: 1.7;
}

.terms-highlight strong {
    color: #a8ff3e;
}


/* =========================================================
   CHECK LIST
========================================================= */

.terms-check-list {
    margin-top: 25px;
}

.terms-check-list > div {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 17px;
}

.terms-check-list > div > span {
    flex: 0 0 25px;

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(168, 255, 62, 0.10);

    border-radius: 50%;

    color: #a8ff3e;

    font-size: 12px;

    font-weight: 700;
}

.terms-check-list p {
    margin: 0;

    padding-top: 1px;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.terms-contact-card {
    background:
        linear-gradient(
            135deg,
            #101722,
            #0d141f
        );

    border-color:
        rgba(168, 255, 62, 0.15);
}

.terms-contact-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 15px;

    padding: 13px 22px;

    background: #a8ff3e;

    color: #071008;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.terms-contact-btn:hover {
    background: #ffffff;

    color: #071008;
}

.terms-contact-btn span {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.terms-contact-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .terms-banner {
        min-height: 380px;
    }

    .terms-banner h1 {
        font-size: 46px;
    }

    .terms-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .terms-sidebar {
        position: static;
    }

    .terms-sidebar-card {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .terms-sidebar-card h3 {
        grid-column: 1 / -1;
    }

}


@media (max-width: 767px) {

    .terms-banner {
        min-height: 350px;
    }

    .terms-banner h1 {
        font-size: 38px;
    }

    .terms-banner p {
        font-size: 15px;
    }

    .terms-section {
        padding: 60px 0;
    }

    .terms-card {
        padding: 30px 25px;
    }

    .terms-card h2 {
        font-size: 24px;
    }

    .terms-sidebar-card {
        display: block;
    }

}


@media (max-width: 480px) {

    .terms-banner h1 {
        font-size: 32px;
    }

    .terms-card {
        padding: 25px 20px;
    }

    .terms-card p,
    .terms-card li {
        font-size: 14px;
    }

}

/* =========================================================
   RACKET SCORER
   CONTACT US PAGE
========================================================= */


/* =========================================================
   CONTACT BANNER
========================================================= */

.contact-banner {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;

    background:
        url("../images/contact-banner.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}

.contact-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 18, 0.97),
            rgba(7, 11, 18, 0.82),
            rgba(7, 11, 18, 0.60)
        );
}

.contact-banner-content {
    position: relative;

    z-index: 2;

    max-width: 800px;
}

.contact-small-title {
    display: inline-block;

    color: #a8ff3e;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.contact-banner h1 {
    color: #ffffff;

    font-size: 56px;

    line-height: 1.15;

    font-weight: 700;

    margin: 0 0 20px;
}

.contact-banner h1 span {
    color: #a8ff3e;
}

.contact-banner p {
    max-width: 680px;

    color: #aeb8c5;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.contact-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;
}

.contact-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: 0.3s;
}

.contact-breadcrumb a:hover {
    color: #a8ff3e;
}

.contact-breadcrumb i {
    color: #a8ff3e;

    font-style: normal;
}

.contact-breadcrumb span {
    color: #8994a2;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: #070b12;

    padding: 95px 0;
}

.contact-heading {
    max-width: 750px;

    text-align: center;

    margin: 0 auto 55px;
}

.contact-section-tag {
    display: inline-block;

    color: #a8ff3e;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.7px;

    margin-bottom: 14px;
}

.contact-heading h2 {
    color: #ffffff;

    font-size: 44px;

    line-height: 1.2;

    margin: 0 0 18px;
}

.contact-heading h2 span {
    color: #a8ff3e;
}

.contact-heading p {
    color: #929dab;

    font-size: 16px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 70px;
}

.contact-info-card {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 28px;

    background: #101722;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 15px;

    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(168, 255, 62, 0.25);
}

.contact-info-icon {
    flex: 0 0 55px;

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(168, 255, 62, 0.10);

    border-radius: 12px;

    color: #a8ff3e;

    font-size: 21px;
}

.contact-info-card span {
    display: block;

    color: #a8ff3e;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.3px;

    margin-bottom: 6px;
}

.contact-info-card h3 {
    color: #ffffff;

    font-size: 18px;

    margin: 0 0 7px;
}

.contact-info-card p {
    color: #8f9aa8;

    font-size: 13px;

    line-height: 1.6;

    margin: 0;
}

.contact-info-card a {
    color: #9ea9b6;

    font-size: 13px;

    text-decoration: none;

    word-break: break-word;

    transition: 0.3s;
}

.contact-info-card a:hover {
    color: #a8ff3e;
}


/* =========================================================
   CONTACT MAIN GRID
========================================================= */

.contact-main-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 75px;

    align-items: start;
}


/* =========================================================
   SUPPORT CONTENT
========================================================= */

.contact-support-content {
    padding-top: 10px;
}

.contact-support-content h2 {
    color: #ffffff;

    font-size: 40px;

    line-height: 1.25;

    margin: 0 0 20px;
}

.contact-support-content h2 span {
    color: #a8ff3e;
}

.contact-support-content > p {
    color: #929dab;

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 35px;
}


/* =========================================================
   SUPPORT FEATURES
========================================================= */

.support-features {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.support-feature {
    display: flex;

    gap: 16px;
}

.support-feature-icon {
    flex: 0 0 45px;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(168, 255, 62, 0.10);

    border-radius: 10px;

    color: #a8ff3e;

    font-size: 17px;
}

.support-feature h4 {
    color: #ffffff;

    font-size: 16px;

    margin: 0 0 5px;
}

.support-feature p {
    color: #8994a2;

    font-size: 13px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    background: #101722;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 18px;

    padding: 40px;
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header span {
    display: block;

    color: #a8ff3e;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.contact-form-header h3 {
    color: #ffffff;

    font-size: 25px;

    margin: 0;
}


/* =========================================================
   FORM ROW
========================================================= */

.contact-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;

    color: #d5dbe2;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    background: #0b111b;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 7px;

    color: #ffffff;

    font-family: 'Inter', sans-serif;

    font-size: 14px;

    outline: none;

    transition: all 0.3s ease;
}

.contact-form-group input,
.contact-form-group select {
    height: 52px;

    padding: 0 15px;
}

.contact-form-group textarea {
    min-height: 145px;

    padding: 15px;

    resize: vertical;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #596575;
}

.contact-form-group select {
    cursor: pointer;
}

.contact-form-group select option {
    background: #101722;

    color: #ffffff;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: #a8ff3e;

    box-shadow:
        0 0 0 3px rgba(168, 255, 62, 0.07);
}


/* =========================================================
   FORM NOTE
========================================================= */

.contact-form-note {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    padding: 12px 14px;

    background:
        rgba(168, 255, 62, 0.05);

    border:
        1px solid rgba(168, 255, 62, 0.10);

    border-radius: 7px;

    margin-bottom: 22px;
}

.contact-form-note i {
    color: #a8ff3e;

    font-size: 13px;

    margin-top: 3px;
}

.contact-form-note span {
    color: #8994a2;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-btn {
    width: 100%;

    height: 52px;

    border: 0;

    border-radius: 7px;

    background: #a8ff3e;

    color: #071008;

    font-family: 'Inter', sans-serif;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: #ffffff;

    transform: translateY(-2px);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CTA
========================================================= */

.contact-cta {
    position: relative;

    padding: 100px 0;

    background:
        url("../images/contact-cta.jpg")
        center center / cover no-repeat;

    text-align: center;

    overflow: hidden;
}

.contact-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(7, 11, 18, 0.90);
}

.contact-cta-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: auto;
}

.contact-cta-content h2 {
    color: #ffffff;

    font-size: 43px;

    line-height: 1.2;

    margin: 0 0 18px;
}

.contact-cta-content h2 span {
    color: #a8ff3e;
}

.contact-cta-content p {
    max-width: 650px;

    margin: 0 auto 28px;

    color: #9ba6b3;

    font-size: 15px;

    line-height: 1.8;
}

.contact-cta-buttons {
    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}

.contact-primary-btn,
.contact-outline-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 160px;

    padding: 14px 25px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.contact-primary-btn {
    background: #a8ff3e;

    color: #071008;
}

.contact-primary-btn:hover {
    background: #ffffff;

    color: #071008;
}

.contact-outline-btn {
    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.25);
}

.contact-outline-btn:hover {
    color: #a8ff3e;

    border-color: #a8ff3e;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .contact-banner {
        min-height: 380px;
    }

    .contact-banner h1 {
        font-size: 46px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-support-content {
        max-width: 750px;
    }

}


@media (max-width: 767px) {

    .contact-banner {
        min-height: 350px;
    }

    .contact-banner h1 {
        font-size: 38px;
    }

    .contact-banner p {
        font-size: 15px;
    }

    .contact-section {
        padding: 65px 0;
    }

    .contact-heading h2 {
        font-size: 34px;
    }

    .contact-support-content h2 {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding: 75px 0;
    }

    .contact-cta-content h2 {
        font-size: 33px;
    }

}


@media (max-width: 480px) {

    .contact-banner h1 {
        font-size: 32px;
    }

    .contact-info-card {
        padding: 22px;
    }

    .contact-form-wrapper {
        padding: 25px 18px;
    }

    .contact-cta-buttons {
        flex-direction: column;
    }

    .contact-primary-btn,
    .contact-outline-btn {
        width: 100%;
    }

}

/* =========================================================
   RACKET SCORER
   DELETE ACCOUNT PAGE
========================================================= */


/* =========================================================
   DELETE ACCOUNT BANNER
========================================================= */

.delete-banner {
    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    background:
        url("../images/delete-account-banner.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}

.delete-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 18, 0.98),
            rgba(7, 11, 18, 0.85),
            rgba(7, 11, 18, 0.62)
        );
}

.delete-banner-content {
    position: relative;

    z-index: 2;

    max-width: 800px;
}

.delete-small-title {
    display: inline-block;

    color: #a8ff3e;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.delete-banner h1 {
    color: #ffffff;

    font-size: 56px;

    line-height: 1.15;

    margin: 0 0 20px;
}

.delete-banner h1 span {
    color: #a8ff3e;
}

.delete-banner p {
    max-width: 680px;

    color: #aeb8c5;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.delete-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;
}

.delete-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: 0.3s;
}

.delete-breadcrumb a:hover {
    color: #a8ff3e;
}

.delete-breadcrumb i {
    color: #a8ff3e;

    font-style: normal;
}

.delete-breadcrumb span {
    color: #8994a2;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.delete-section {
    background: #070b12;

    padding: 95px 0;
}

.delete-intro {
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}

.delete-section-tag {
    display: inline-block;

    color: #a8ff3e;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.7px;

    margin-bottom: 14px;
}

.delete-intro h2,
.delete-process-heading h2,
.delete-form-content h2 {
    color: #ffffff;

    font-size: 42px;

    line-height: 1.25;

    margin: 0 0 18px;
}

.delete-intro h2 span,
.delete-process-heading h2 span,
.delete-form-content h2 span {
    color: #a8ff3e;
}

.delete-intro p {
    color: #929dab;

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 12px;
}


/* =========================================================
   INFORMATION CARDS
========================================================= */

.delete-card-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 55px;
}

.delete-info-card {
    padding: 32px;

    background: #101722;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 15px;

    transition: all 0.3s ease;
}

.delete-info-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(168, 255, 62, 0.25);
}

.delete-info-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    background:
        rgba(168, 255, 62, 0.10);

    border-radius: 12px;

    color: #a8ff3e;

    font-size: 20px;
}

.delete-info-card h3 {
    color: #ffffff;

    font-size: 19px;

    margin: 0 0 12px;
}

.delete-info-card p {
    color: #8994a2;

    font-size: 13px;

    line-height: 1.75;

    margin: 0;
}


/* =========================================================
   WARNING BOX
========================================================= */

.delete-warning {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 28px 30px;

    background:
        rgba(255, 185, 65, 0.055);

    border:
        1px solid rgba(255, 185, 65, 0.16);

    border-radius: 14px;

    margin-bottom: 90px;
}

.delete-warning-icon {
    flex: 0 0 50px;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255, 185, 65, 0.10);

    border-radius: 10px;

    color: #ffbd59;

    font-size: 18px;
}

.delete-warning h3 {
    color: #ffffff;

    font-size: 19px;

    margin: 0 0 10px;
}

.delete-warning p {
    color: #929dab;

    font-size: 13px;

    line-height: 1.75;

    margin: 0 0 8px;
}

.delete-warning p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   DELETE PROCESS
========================================================= */

.delete-process {
    margin-bottom: 90px;
}

.delete-process-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;
}

.delete-steps {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.delete-step {
    position: relative;

    padding: 28px 22px;

    background: #101722;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 14px;
}

.delete-step-number {
    color: #a8ff3e;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 22px;
}

.delete-step h3 {
    color: #ffffff;

    font-size: 17px;

    line-height: 1.4;

    margin: 0 0 10px;
}

.delete-step p {
    color: #8994a2;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   DELETE FORM
========================================================= */

.delete-form-section {
    max-width: 850px;

    margin: 0 auto;

    padding: 45px;

    background: #101722;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 18px;
}

.delete-form-content {
    text-align: center;
}

.delete-form-content p {
    max-width: 680px;

    margin: 0 auto 35px;

    color: #8994a2;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FORM
========================================================= */

.delete-account-form {
    text-align: left;
}

.delete-form-group {
    margin-bottom: 20px;
}

.delete-form-group label {
    display: block;

    color: #d5dbe2;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 8px;
}

.delete-form-group input,
.delete-form-group select,
.delete-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    background: #0b111b;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 7px;

    color: #ffffff;

    font-family: 'Inter', sans-serif;

    font-size: 14px;

    outline: none;

    transition: all 0.3s ease;
}

.delete-form-group input,
.delete-form-group select {
    height: 52px;

    padding: 0 15px;
}

.delete-form-group textarea {
    min-height: 130px;

    padding: 15px;

    resize: vertical;
}

.delete-form-group input::placeholder,
.delete-form-group textarea::placeholder {
    color: #596575;
}

.delete-form-group select {
    cursor: pointer;
}

.delete-form-group select option {
    background: #101722;

    color: #ffffff;
}

.delete-form-group input:focus,
.delete-form-group select:focus,
.delete-form-group textarea:focus {
    border-color: #a8ff3e;

    box-shadow:
        0 0 0 3px rgba(168, 255, 62, 0.07);
}


/* =========================================================
   CHECKBOX
========================================================= */

.delete-confirmation {
    margin: 25px 0;
}

.delete-checkbox {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    cursor: pointer;
}

.delete-checkbox input {
    width: 17px;

    height: 17px;

    flex: 0 0 17px;

    margin-top: 2px;

    accent-color: #a8ff3e;

    cursor: pointer;
}

.delete-checkbox span {
    color: #8994a2;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   DELETE BUTTON
========================================================= */

.delete-submit-btn {
    width: 100%;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 7px;

    background: #a8ff3e;

    color: #071008;

    font-family: 'Inter', sans-serif;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}

.delete-submit-btn:hover {
    background: #ffffff;

    transform: translateY(-2px);
}

.delete-submit-btn i {
    transition: transform 0.3s ease;
}

.delete-submit-btn:hover i {
    transform: scale(1.1);
}


/* =========================================================
   EMAIL CONTACT BOX
========================================================= */

.delete-contact-box {
    max-width: 850px;

    margin: 35px auto 0;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 25px 30px;

    background:
        rgba(168, 255, 62, 0.045);

    border:
        1px solid rgba(168, 255, 62, 0.12);

    border-radius: 14px;
}

.delete-contact-icon {
    flex: 0 0 50px;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(168, 255, 62, 0.10);

    border-radius: 10px;

    color: #a8ff3e;
}

.delete-contact-box h3 {
    color: #ffffff;

    font-size: 17px;

    margin: 0 0 5px;
}

.delete-contact-box p {
    color: #8994a2;

    font-size: 13px;

    margin: 0 0 6px;
}

.delete-contact-box a {
    color: #a8ff3e;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;
}

.delete-contact-box a i {
    margin-left: 5px;
}


/* =========================================================
   DELETE CTA
========================================================= */

.delete-cta {
    position: relative;

    padding: 100px 0;

    text-align: center;

    background:
        url("../images/delete-account-cta.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}

.delete-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(7, 11, 18, 0.91);
}

.delete-cta-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: auto;
}

.delete-cta-content h2 {
    color: #ffffff;

    font-size: 42px;

    line-height: 1.2;

    margin: 0 0 18px;
}

.delete-cta-content h2 span {
    color: #a8ff3e;
}

.delete-cta-content p {
    max-width: 650px;

    margin: 0 auto 28px;

    color: #929dab;

    font-size: 15px;

    line-height: 1.8;
}

.delete-cta-buttons {
    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}

.delete-primary-btn,
.delete-outline-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 160px;

    padding: 14px 25px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.delete-primary-btn {
    background: #a8ff3e;

    color: #071008;
}

.delete-primary-btn:hover {
    background: #ffffff;

    color: #071008;
}

.delete-outline-btn {
    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.25);
}

.delete-outline-btn:hover {
    color: #a8ff3e;

    border-color: #a8ff3e;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .delete-banner {
        min-height: 380px;
    }

    .delete-banner h1 {
        font-size: 46px;
    }

    .delete-card-grid {
        grid-template-columns: 1fr;
    }

    .delete-steps {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .delete-banner {
        min-height: 350px;
    }

    .delete-banner h1 {
        font-size: 38px;
    }

    .delete-banner p {
        font-size: 15px;
    }

    .delete-section {
        padding: 65px 0;
    }

    .delete-intro h2,
    .delete-process-heading h2,
    .delete-form-content h2 {
        font-size: 33px;
    }

    .delete-steps {
        grid-template-columns: 1fr;
    }

    .delete-form-section {
        padding: 30px 22px;
    }

    .delete-warning {
        padding: 22px;

        flex-direction: column;
    }

    .delete-contact-box {
        align-items: flex-start;

        padding: 22px;
    }

    .delete-cta {
        padding: 75px 0;
    }

    .delete-cta-content h2 {
        font-size: 33px;
    }

}


@media (max-width: 480px) {

    .delete-banner h1 {
        font-size: 32px;
    }

    .delete-form-section {
        padding: 25px 18px;
    }

    .delete-cta-buttons {
        flex-direction: column;
    }

    .delete-primary-btn,
    .delete-outline-btn {
        width: 100%;
    }

}


/* =========================================================
   DELETE ACCOUNT FORM - UPDATED
========================================================= */

.required-star {
    color: #ff6262;
    margin-left: 3px;
}

.optional-text {
    color: #697585;
    font-size: 11px;
    font-weight: 400;
    margin-left: 4px;
}

.field-help {
    display: block;

    margin-top: 7px;

    color: #697585;

    font-size: 11px;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.delete-success-message {

    display: none;

    align-items: flex-start;

    gap: 16px;

    text-align: left;

    padding: 22px;

    margin-bottom: 30px;

    background:
        rgba(168, 255, 62, 0.07);

    border:
        1px solid rgba(168, 255, 62, 0.25);

    border-radius: 12px;
}

.success-icon {

    flex: 0 0 45px;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #a8ff3e;

    color: #071008;

    border-radius: 50%;

    font-size: 18px;
}

.delete-success-message h3 {

    color: #a8ff3e;

    font-size: 17px;

    margin: 0 0 7px;
}

.delete-success-message p {

    color: #929dab;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   ERROR MESSAGE
========================================================= */

.delete-error-message {

    display: none;

    align-items: center;

    gap: 10px;

    text-align: left;

    padding: 14px 18px;

    margin-bottom: 20px;

    background:
        rgba(255, 80, 80, 0.07);

    border:
        1px solid rgba(255, 80, 80, 0.20);

    border-radius: 8px;

    color: #ff7777;

    font-size: 13px;
}

.delete-error-message i {
    font-size: 16px;
}


/* =========================================================
   DISABLED SUBMIT BUTTON
========================================================= */

.delete-submit-btn:disabled {

    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .delete-success-message {

        flex-direction: column;

        padding: 20px;

    }

}

/* =========================================================
   MOBILE MENU FIX
========================================================= */

@media (max-width: 991px) {

    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 45px;
        height: 45px;

        border: 1px solid rgba(168, 255, 62, 0.25);

        background: #101722;

        color: #a8ff3e;

        border-radius: 8px;

        font-size: 22px;

        cursor: pointer;

        position: relative;

        z-index: 1001;
    }


    .main-nav {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px;

        background: #0b111b;

        border-top:
            1px solid rgba(255, 255, 255, 0.06);

        border-bottom:
            1px solid rgba(255, 255, 255, 0.06);

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.35);

        z-index: 1000;
    }


    /* IMPORTANT */

    .main-nav.menu-open {
        display: flex;
    }


    .main-nav a {

        display: block;

        width: 100%;

        padding: 13px 15px;

        color: #ffffff;

        text-decoration: none;

        border-radius: 6px;

        font-size: 14px;

        margin: 2px 0;
    }


    .main-nav a:hover,
    .main-nav a.active {

        color: #a8ff3e;

        background:
            rgba(168, 255, 62, 0.07);
    }


    .nav-wrapper {
        position: relative;
    }

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
    }

}


/* =========================================================
   PICKLEBALL ICON
========================================================= */

.pickleball-icon {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(168, 255, 62, 0.10);

    color: #a8ff3e;

    overflow: hidden;
}


/* Paddle */

.pickleball-paddle {
    position: absolute;

    width: 25px;

    height: 32px;

    background: #a8ff3e;

    border-radius: 50% 50% 45% 45%;

    transform: rotate(-25deg);

    left: 22px;

    top: 13px;
}


/* Paddle handle */

.pickleball-paddle::after {
    content: "";

    position: absolute;

    width: 8px;

    height: 17px;

    background: #a8ff3e;

    left: 8px;

    bottom: -13px;

    border-radius: 4px;

    transform: rotate(2deg);
}


/* Pickleball */

.pickleball-ball {
    position: absolute;

    width: 13px;

    height: 13px;

    background: transparent;

    border: 2px solid #a8ff3e;

    border-radius: 50%;

    right: 19px;

    top: 15px;
}


/* Small holes on ball */

.pickleball-ball::before {
    content: "••";

    position: absolute;

    color: #a8ff3e;

    font-size: 9px;

    letter-spacing: 1px;

    left: 1px;

    top: -4px;
}