:root {
    --bg-dark: #0f1115;
    --acc-green: #34d399;
    --acc-green-glow: rgba(52, 211, 153, 0.3);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1,
h2,
h3,
.badge {
    font-family: 'Outfit', sans-serif;
}

/* Typography */
h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

h3 {
    font-size: 1.25rem;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

p {
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Toggle Animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--acc-green);
}

/* Mobile Navbar Media Query */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 17, 21, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
    }

    .nav-brand {
        z-index: 1001;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero_golf.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 17, 21, 0.4), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

/* Grip Section Styling */
.grip-section {
    padding: 6rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.grip-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.grip-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.grip-section>p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 3rem;
}

.combined-grip-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.combined-grip-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.grip-hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
}

.grip-main-photo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 450px;
    transition: transform 0.5s ease;
}

.combined-grip-card:hover .grip-main-photo {
    transform: scale(1.02);
}

.grip-info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.grip-info-block {
    padding: 2.5rem;
}

.grip-info-block:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
    .grip-info-container {
        grid-template-columns: 1fr;
    }

    .grip-info-block:last-child {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.grip-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.grip-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.standard-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.putter-grip-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.grip-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.grip-points li {
    display: flex;
    gap: 1rem;
    color: #e2e8f0;
    line-height: 1.5;
}

/* Swing Section */
.swing-section {
    padding: 6rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.swing-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.swing-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.swing-section>p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 3rem;
}

.swing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .swing-grid {
        grid-template-columns: 1fr;
    }
}

.swing-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.swing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.swing-svg-wrapper {
    padding: 2.5rem 1.5rem;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
}

.swing-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.swing-info {
    padding: 2rem;
}

.swing-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.straight-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.slice-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hook-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.swing-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.swing-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.swing-points li {
    display: flex;
    gap: 0.75rem;
    color: #cbd5e1;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Stance Section Padding Adjustment */
.stance-section {
    padding: 4rem 5% 6rem;
}

.stance-section h2,
.stance-section>p {
    text-align: center;
}

.stance-section>p {
    margin-bottom: 3rem;
}

.stance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .stance-grid {
        grid-template-columns: 1fr;
    }
}

.stance-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.stance-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stance-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.stance-svg-wrapper {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.2) 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
}

.stance-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.stance-info {
    padding: 1.75rem;
}

.stance-club-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.driver-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.iron-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.putter-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.sand-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stance-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.stance-points li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.sp-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.stance-points strong {
    color: #e2e8f0;
}

/* How to Play Section */
.how-to-play-section {
    padding: 2rem 0;
    margin-bottom: -3rem;
}

.how-to-play-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.how-to-play-section>p {
    text-align: center;
    margin-bottom: 3rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

.rule-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.rule-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.rule-card:hover {
    transform: translateY(-8px);
    border-color: var(--acc-green);
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.05) 0%, transparent 100%);
}

.rule-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.rule-card h3 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.rule-card p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Scoring Table */
.scoring-card {
    grid-column: 1 / -1;
}

.scoring-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease;
}

.score-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.score-name {
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    width: 250px;
    flex-shrink: 0;
    color: #f8fafc;
}

.score-desc {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0 1rem;
}

.score-value {
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    width: 60px;
    text-align: right;
    font-size: 1.25rem;
}

.score-row.rare .score-value {
    color: #facc15;
}

.score-row.under-par .score-value {
    color: #34d399;
}

.score-row.even .score-value {
    color: #e2e8f0;
}

.score-row.over-par .score-value {
    color: #ef4444;
}

/* Anatomy Section */
.anatomy-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.anatomy-section h2,
.anatomy-section>p {
    text-align: center;
}

.anatomy-section>p {
    margin-bottom: 3rem;
}

.anatomy-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anatomy-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.anatomy-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anatomy-image {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.anatomy-glow {
    background: rgba(16, 185, 129, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.anatomy-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.anatomy-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.bullet-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.anatomy-text h3 {
    margin: 0 0 0.5rem 0;
    color: #f8fafc;
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
}

.anatomy-text p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Chart Section */
.chart-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.chart-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.distance-chart {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.club-label {
    width: 140px;
    text-align: right;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: #e2e8f0;
}

.bar-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar {
    height: 100%;
    width: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    font-weight: 700;
    color: white;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.driver-bar {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.8), #3b82f6);
}

.hybrid-bar {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.8), #8b5cf6);
}

.iron-bar {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.8), #ef4444);
}

.wedge-bar {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.8), #f59e0b);
}

.putter-bar {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.8), #10b981);
}

/* Club Cards */
.club-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.club-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.club-card.reverse {
    flex-direction: row-reverse;
}

.club-image-container {
    flex: 1;
    position: relative;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.club-image-container:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
}

.club-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s ease;
}

.club-image-container:hover .club-image {
    transform: scale(1.05);
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.club-image-container:hover .glow {
    opacity: 0.8;
}

.driver-glow {
    background: rgba(59, 130, 246, 0.4);
    top: 10%;
    right: 10%;
}

.hybrid-glow {
    background: rgba(139, 92, 246, 0.4);
    bottom: 10%;
    left: 10%;
}

.iron-glow {
    background: rgba(239, 68, 68, 0.4);
    top: 10%;
    left: 10%;
}

.wedge-glow {
    background: rgba(245, 158, 11, 0.4);
    top: 10%;
    right: 10%;
}

.putter-glow {
    background: rgba(16, 185, 129, 0.4);
    bottom: 10%;
    right: 10%;
}

.club-info {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--acc-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.detail-block:hover {
    border-left-color: var(--acc-green);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
}

.icon {
    font-size: 1.2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid var(--card-border);
    margin-top: 4rem;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {

    .club-card,
    .club-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .club-image-container {
        width: 100%;
        box-sizing: border-box;
    }

    .anatomy-container {
        flex-direction: column;
        padding: 2rem;
    }

    .score-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .score-name {
        width: 100%;
    }

    .score-desc {
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .score-value {
        width: 100%;
        text-align: left;
    }

    h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {

    /* Tighten global spacing */
    .container {
        padding: 2rem 1rem;
        gap: 2.5rem;
    }

    section[class$="-section"],
    .chart-section,
    .accessories-section,
    .grip-section,
    .swing-section,
    .stance-section {
        padding: 2.5rem 5% 1.5rem !important;
        margin-bottom: 0 !important;
    }

    .how-to-play-section {
        margin-bottom: -1rem !important;
    }

    /* Typography */
    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    section>p {
        margin-bottom: 1.5rem !important;
    }

    /* Cards Internal Padding */
    .rule-card,
    .accessory-card,
    .swing-info,
    .stance-info,
    .anatomy-container {
        padding: 1.25rem !important;
    }

    .rule-icon,
    .accessory-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .club-image-container {
        padding: 1.5rem !important;
    }

    .detail-block {
        padding: 1rem !important;
        gap: 1rem;
    }

    .grip-hero-image {
        padding: 1.5rem 1rem !important;
    }

    .grip-info-block {
        padding: 1.25rem !important;
    }

    .distance-chart {
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }

    .chart-row {
        gap: 0.75rem !important;
    }

    .club-label {
        width: 90px !important;
        font-size: 0.85rem !important;
    }

    .bar-container {
        height: 26px !important;
    }

    .scoring-table {
        padding: 0.75rem !important;
    }

    .score-row {
        padding: 0.75rem !important;
    }

    footer {
        padding: 2rem 1rem !important;
        margin-top: 2rem !important;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    .navbar {
        padding: 1rem 1rem;
    }
}

/* Essential Gear Section */
.accessories-section {
    padding: 6rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessories-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.accessories-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.accessories-section>p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 3rem;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .accessories-grid {
        grid-template-columns: 1fr;
    }
}

.accessory-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.accessory-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.accessory-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.accessory-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.accessory-card h3 {
    margin-bottom: 1rem;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
}

.accessory-card p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    color: #cbd5e1;
}

.accessory-tip {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #8b5cf6;
    font-weight: 600;
}