/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #071A30;
    --primary-dark-navy: #16213e;
    --primary-light-navy: #0f3460;
    --primary-silver: #c0c0c0;
    --primary-light-silver: #e8e8e8;
    --primary-white: #ffffff;
    --primary-black: #000000;
    --primary-gold: #d4af37;
    --primary-light-gold: #f4d03f;
    --text-light: #ffffff;
    --text-dark: #000000;
    --text-silver: #c0c0c0;
    --text-gold: #d4af37;
    --shadow-subtle: 0 2px 10px rgba(7, 26, 48, 0.1);
    --shadow-medium: 0 4px 20px rgba(7, 26, 48, 0.15);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
    --border-light: 1px solid #2a2a4a;
    --border-gold: 1px solid #d4af37;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-silver);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-navy);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: var(--border-gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem 0.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -12rem;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
}

.nav-brand-text {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-silver);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: var(--primary-navy);
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-white);
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--primary-light-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--primary-silver);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    text-shadow: 2px 2px 4px rgba(7, 26, 48, 0.1);
    letter-spacing: 3px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-navy);
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--primary-white);
    margin-top: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--primary-navy);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-navy);
    border-radius: 0;
    transition: all 0.3s ease;
    border: var(--border-gold);
    box-shadow: var(--shadow-medium);
}

.stat-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-white);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Teams Section - Enhanced */
.teams {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-light-silver) 0%, var(--primary-white) 100%);
    position: relative;
    overflow: hidden;
}

.teams::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.teams::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.teams .container {
    position: relative;
    z-index: 2;
}

.teams .section-header {
    margin-bottom: 5rem;
}

.teams .section-header h2 {
    font-size: 4rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(7, 26, 48, 0.1);
}

.teams .section-header h2::after {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-light-gold) 50%, var(--primary-gold) 100%);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.teams h2 {

}

.teams p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--primary-navy);
    opacity: 0.8;
    text-align: center;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.team-card {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-decoration: none;
    display: block;
    color: inherit;
    box-shadow: 0 2px 10px rgba(7, 26, 48, 0.08);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(7, 26, 48, 0.12);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover::after {
    opacity: 1;
}

.team-image {
    height: 250px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
}

.team-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.placeholder-img {
    width: 120px;
    height: 120px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.95;
    border: 4px solid var(--primary-white);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.team-card:hover .placeholder-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
}

.team-info {
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(7, 26, 48, 0.1);
    transition: color 0.3s ease;
}

.team-card:hover .team-info h3 {
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.team-info p {
    color: var(--primary-navy);
    opacity: 0.85;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.team-card:hover .team-info p {
    opacity: 1;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.team-achievements h4 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-achievements ul {
    list-style: none;
    padding: 0;
}

.team-achievements li {
    padding: 0.8rem 0;
    color: var(--primary-navy);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

.team-achievements li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.team-members h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.member-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--primary-white);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    position: relative;
}

.member-card::before {
    /* Removed the accent line */
    display: none;
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(7, 26, 48, 0.15);
}

.member-card:hover::before {
    /* Removed the accent line animation */
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-card h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-card p {
    display: none;
}

/* History Section */
.history {
    padding: 2rem 0;
    background: var(--primary-white);
    margin-top: 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 2;
}

.timeline-content {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 0;
    margin: 0 2rem;
    flex: 1;
    border: var(--border-light);
}

.timeline-content h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* History Section - Responsive */
@media (max-width: 768px) {
    .history {
        padding: 2rem 0;
    }
    
    .timeline {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .timeline::before {
        left: 20px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
        padding-left: 0;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 80px;
        text-align: center;
    }
    
    .timeline-content {
        margin: 0 0 0 100px;
        padding: 1.5rem;
        flex: 1;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .timeline {
        padding: 0 0.5rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-date {
        left: 0;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        min-width: 70px;
    }
    
    .timeline-content {
        margin: 0 0 0 85px;
        padding: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .timeline::before {
        left: 12px;
    }
    
    .timeline-date {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        min-width: 65px;
    }
    
    .timeline-content {
        margin: 0 0 0 80px;
        padding: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 0.95rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* News Section */
.news {
    padding: 4rem 0;
    background: var(--primary-light-silver);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.news-date {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.news-card p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--primary-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.contact-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--primary-navy);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: var(--primary-white);
    border: var(--border-light);
    border-radius: 0;
    color: var(--primary-navy);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--primary-white);
    border: var(--border-light);
    border-radius: 0;
    color: var(--primary-navy);
    font-family: inherit;
    transition: all 0.3s ease;
    resize: none;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--primary-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--primary-navy);
}

/* Page Header */
.page-header {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.header-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light-navy) 100%);
}

/* 画像がない場合のフォールバック表示 */
.page-header:not(:has(.header-image[src])) .header-fallback,
.page-header .header-image[src=""] + .header-fallback {
    display: block;
}

.page-header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-white);
    letter-spacing: 2px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.4);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* About Page */
.about-page {
    padding: 2rem 0;
    background: var(--primary-white);
}

.about-page .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 4rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(7, 26, 48, 0.1);
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--primary-navy);
    opacity: 0.8;
    text-align: center;
}

/* About - improved layout */
.about-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 1.5rem auto 2rem;
}

.fact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: var(--primary-light-silver);
    border: 1px solid rgba(7, 26, 48, 0.08);
}

.fact-label {
    color: var(--primary-navy);
    font-weight: 700;
}

.fact-value {
    color: var(--primary-gold);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.about-block {
    max-width: 900px;
    margin: 1.5rem auto;
    text-align: left;
}

.about-block h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.about-block p {
    text-align: left;
    margin: 0 auto;
    line-height: 1.9;
}

.about-quote {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.2rem 1rem;
    text-align: center;
    border-left: 4px solid var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    color: var(--primary-navy);
}

.about-quote span {
    font-weight: 800;
}

@media (max-width: 768px) {
    .about-facts {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .about-block {
        padding: 0 1rem;
    }
}

.about-mission,
.about-vision {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--primary-navy);
    border-radius: 8px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.about-mission h3,
.about-vision h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.about-mission p,
.about-vision p {
    color: var(--primary-white);
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
}

.placeholder-img-large {
    width: 100%;
    height: 400px;
    background: var(--primary-lighter-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 2rem;
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--primary-light-silver);
}

.stats-section .stats {
    grid-template-columns: repeat(6, 1fr);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--primary-lighter-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(171, 150, 54, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-black);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.value-card p {
    color: var(--text-gray);
    opacity: 0.8;
    line-height: 1.6;
}

/* Teams Page */
.teams-overview {
    padding: 4rem 0;
    background: var(--primary-lighter-gray);
}

.team-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--primary-black);
}

.members-admin-link-wrap {
    margin-top: 1.2rem;
}

/* Members Admin */
.members-admin-section {
    padding: 4rem 0 5rem;
    background: var(--primary-light-silver);
}

.members-admin-panel {
    background: var(--primary-white);
    border: var(--border-gold);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.members-admin-panel h2 {
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.members-admin-lead {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.members-admin-toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(3, max-content);
    gap: 0.8rem;
    align-items: end;
    margin-bottom: 1rem;
}

.members-admin-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.members-admin-select-wrap label {
    color: var(--primary-navy);
    font-weight: 600;
}

.members-admin-select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(7, 26, 48, 0.2);
    background: var(--primary-white);
    color: var(--primary-navy);
    font-family: inherit;
}

.admin-status {
    min-height: 1.5rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.admin-status.is-error {
    color: #b42318;
}

.members-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
}

.members-admin-grid .form-group {
    margin-bottom: 0;
}

.members-admin-grid .form-group label {
    display: inline-block;
    margin-bottom: 0.4rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.members-admin-grid .form-group input,
.members-admin-grid .form-group select,
.members-admin-grid .form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(7, 26, 48, 0.2);
    background: var(--primary-white);
    color: var(--primary-navy);
    font-family: inherit;
    border-radius: 0;
}

.members-admin-grid .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.members-admin-wide {
    grid-column: 1 / -1;
}

.members-admin-actions,
.members-admin-export {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.json-preview {
    margin-top: 0.5rem;
    background: #0f172a;
    color: #f8fafc;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.86rem;
    line-height: 1.45;
    min-height: 300px;
}

@media (max-width: 980px) {
    .members-admin-toolbar {
        grid-template-columns: 1fr;
    }
}

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

    .members-admin-panel {
        padding: 1.2rem;
    }
}

.team-detail {
    padding: 4rem 0 5rem;
    background: var(--primary-white);
    position: relative;
}

.fortnite-team {
    padding: 5rem 0 6rem;
}

.team-detail:nth-child(even) {
    background: var(--primary-light-silver);
}

.team-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

.team-detail-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-detail-header h2 {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.team-description {
    font-size: 1.2rem;
    color: var(--primary-navy);
    opacity: 0.8;
    font-weight: 400;
}

.team-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.team-members-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* FORTNITE Team specific styles */
.fortnite-team .team-detail-header {
    margin-bottom: 3.5rem;
}

.fortnite-team .team-detail-header h2 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.fortnite-team .team-description {
    font-size: 1.1rem;
    opacity: 0.75;
}

.fortnite-team .members-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fortnite-team .member-card {
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 12px rgba(7, 26, 48, 0.06);
    transition: all 0.3s ease;
}

.fortnite-team .member-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
    box-shadow: 0 6px 24px rgba(7, 26, 48, 0.12);
}

.fortnite-team .member-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 1.8rem;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.25);
    transition: transform 0.3s ease;
}

.fortnite-team .member-card:hover .member-avatar {
    transform: scale(1.05);
}

.fortnite-team .member-card h4 {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

/* FORTNITE Team responsive */
@media (max-width: 768px) {
    .fortnite-team .team-detail-header h2 {
        font-size: 2rem;
    }
    
    .fortnite-team .team-description {
        font-size: 1rem;
    }
    
    .fortnite-team .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.8rem;
    }
    
    .fortnite-team .member-card {
        padding: 2rem 1rem 1.5rem;
    }
    
    .fortnite-team .member-avatar {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
}

.team-info-detail h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-info-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--primary-navy);
    opacity: 0.8;
}

.team-achievements h4 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-achievements ul {
    list-style: none;
    padding: 0;
}

.team-achievements li {
    padding: 0.8rem 0;
    color: var(--primary-navy);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

.team-achievements li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.team-members h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.member-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--primary-white);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    position: relative;
}

.member-card::before {
    /* Removed the accent line */
    display: none;
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(7, 26, 48, 0.15);
}

.member-card:hover::before {
    /* Removed the accent line animation */
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-card h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-card p {
    font-size: 0.9rem;
    color: var(--primary-navy);
    opacity: 0.7;
    font-weight: 400;
}

/* History Page */
.history-overview {
    padding: 4rem 0;
    background: var(--primary-lighter-gray);
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.history-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(171, 150, 54, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(171, 150, 54, 0.2);
}

.timeline-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0A2B4A 0%, #071A30 100%);
}

.timeline-icon {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.2rem;
}

.achievements-section {
    padding: 4rem 0;
    background: var(--primary-lighter-gray);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(171, 150, 54, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-black);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-size: 1.3rem;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.achievement-card p {
    color: var(--text-gray);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.achievement-date {
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 500;
}

.future-goals {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0A2B4A 0%, #071A30 100%);
}

.goals-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(171, 150, 54, 0.2);
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-black);
}

.goal-icon {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.goal-item h3 {
    font-size: 1.3rem;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.goal-item p {
    color: var(--text-gray);
    opacity: 0.8;
    line-height: 1.6;
}

/* News Page */
.news-filter {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    background: var(--primary-white);
    border: 2px solid var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.news-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.news-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(7, 26, 48, 0.15);
    border-color: var(--primary-gold);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-image i {
    font-size: 3rem;
    color: var(--primary-white);
    z-index: 1;
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.news-content {
    padding: 2.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-date {
    color: var(--primary-navy);
    opacity: 0.7;
}

.news-category {
    color: var(--primary-white);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.news-content h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.news-content p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.news-article-hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, rgba(7, 26, 48, 0.95) 0%, rgba(12, 40, 72, 0.85) 100%);
    overflow: hidden;
}

.news-article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.25), transparent 55%),
                radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.15), transparent 45%);
    opacity: 0.9;
}

.news-article-hero .container {
    position: relative;
    z-index: 1;
    max-width: 960px;
}

.article-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.news-article-hero h1 {
    color: var(--primary-white);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.news-article-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 720px;
}

.news-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.news-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-article-meta i {
    color: var(--primary-gold);
}

.news-article-content {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.article-body {
    max-width: 920px;
    margin: 0 auto;
    background: var(--primary-white);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(7, 26, 48, 0.12);
    padding: 3.5rem 4rem;
}

.article-lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--primary-navy);
    opacity: 0.9;
    margin-bottom: 3rem;
}

.article-section + .article-section {
    margin-top: 3.5rem;
}

.article-section h2 {
    font-size: 1.7rem;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.article-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    border-radius: 999px;
}

.article-section p {
    color: var(--primary-navy);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.article-section h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}

.article-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-navy);
    line-height: 1.8;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.article-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 4px solid var(--primary-gold);
    padding: 1.8rem;
    border-radius: 18px;
    margin-top: 1.5rem;
    color: var(--primary-navy);
    line-height: 1.8;
}

.article-cta {
    margin-top: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(7, 26, 48, 0.95) 0%, rgba(12, 40, 72, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    color: var(--primary-white);
    box-shadow: 0 20px 45px rgba(7, 26, 48, 0.25);
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .btn-primary {
    border-radius: 999px;
    padding: 0.9rem 2.2rem;
}

.cta-buttons .btn-secondary {
    border-radius: 999px;
    border-color: var(--primary-white);
    color: var(--primary-white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-navy);
}

.read-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--primary-navy);
    transform: translateX(5px);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

.newsletter-section {
    padding: 4rem 0;
    background: var(--primary-lighter-gray);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(171, 150, 54, 0.3);
    border-radius: 5px;
    color: var(--primary-white);
}

.social-media-section {
    padding: 5rem 0;
    background: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.social-media-section .section-header h2 {
    color: var(--primary-gold);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.social-media-section .section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    margin: 1rem auto 0;
}

.social-media-section .section-subtitle {
    color: var(--primary-navy);
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.social-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-white);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(7, 26, 48, 0.15);
    border-color: var(--primary-gold);
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}



.social-card h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-card p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Contact Page */
.contact-overview {
    padding: 4rem 0;
    background: var(--primary-lighter-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-navy);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    width: 30px;
    margin-top: 0.2rem;
}

.contact-text h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text span {
    color: var(--primary-navy);
    line-height: 1.6;
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--primary-white);
    border: 1px solid var(--primary-light-silver);
    border-radius: 5px;
    color: var(--primary-navy);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--primary-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--primary-navy);
    opacity: 0.6;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--primary-navy);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 3px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0A2B4A 0%, #071A30 100%);
}

.faq-section .section-header h2 {
    color: var(--primary-white);
}

.faq-section .section-subtitle {
    color: var(--primary-white);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(171, 150, 54, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(171, 150, 54, 0.1);
}

.faq-question h3 {
    color: var(--primary-white);
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-black);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 1rem;
    padding: 0 2rem 2rem;
    color: var(--primary-white);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--primary-lighter-gray);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-info h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.map-info ul {
    list-style: none;
    padding: 0;
}

.map-info li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.map-info li::before {
    content: '•';
    color: var(--primary-black);
    position: absolute;
    left: 0;
}

.map-placeholder {
    height: 300px;
    background: var(--primary-lighter-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 2rem;
    font-weight: 700;
}

.map-img {
    text-align: center;
}

.map-img i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Active Navigation */
.nav-menu a.active {
    color: var(--primary-gold);
    opacity: 1;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    padding: 3rem 0 1rem;
    color: var(--primary-white);
    border-top: var(--border-gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo-img {
    height: 35px;
    width: auto;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--primary-silver);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--primary-silver);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-gold);
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary-silver);
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 3rem;
    }
    
    .map-content {
        gap: 3rem;
    }
    
    .page-header {
        padding: 9rem 0 4.5rem;
    }
    
    .page-header h1 {
        font-size: 3.5rem;
    }
    
    .header-image {
        object-position: center center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-logo {
        margin-left: 0;
        gap: 0.5rem;
    }
    
    .nav-logo .logo-img {
        height: 35px;
    }
    
    .nav-brand-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .header-image {
        object-position: center center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* 2列レイアウトを実現するためのコンテナ */
    .footer-links,
    .footer-social {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    /* 2列レイアウトのラッパー */
    .footer-links {
        order: 1;
    }
    
    .footer-social {
        order: 2;
    }
    
    /* 2列レイアウトを強制する */
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        grid-column: 1;
        text-align: left;
    }
    
    .footer-social {
        grid-column: 2;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 0.8rem;
    }
    
    .nav-logo {
        gap: 0.4rem;
    }
    
    .nav-logo .logo-img {
        height: 30px;
    }
    
    .nav-brand-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .header-image {
        object-position: center center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .teams-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-overview {
        padding: 2rem 0;
    }
    
    .faq-section {
        padding: 2rem 0;
    }
    
    .map-section {
        padding: 2rem 0;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-social {
        gap: 0.8rem;
    }
    
    /* 2列レイアウトを維持 */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links,
    .footer-social {
        gap: 0.6rem;
    }
    
    .map-info li {
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0.5rem 0.6rem;
    }
    
    .nav-logo {
        gap: 0.3rem;
    }
    
    .nav-logo .logo-img {
        height: 28px;
    }
    
    .nav-brand-text {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    
    .header-image {
        object-position: center center;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 0.6rem;
    }
    
    .footer-social {
        gap: 0.6rem;
    }
    
    /* 2列レイアウトを維持 */
    .footer-content {
        gap: 1rem;
    }
    
    .footer-links,
    .footer-social {
        gap: 0.5rem;
    }
    
    .map-info li {
        padding: 0.2rem 0;
        padding-left: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .nav-container {
        padding: 0.4rem 0.5rem;
    }
    
    .nav-logo {
        gap: 0.25rem;
    }
    
    .nav-logo .logo-img {
        height: 25px;
    }
    
    .nav-brand-text {
        font-size: 0.75rem;
        letter-spacing: 0.2px;
    }
    
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .header-image {
        object-position: center center;
    }
}

/* Partner Page */
.partner-page {
    padding: 2rem 0;
    background: var(--primary-white);
}

.partner-page .partner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.partner-text h2 {
    font-size: 4rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(7, 26, 48, 0.1);
}

.partner-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--primary-navy);
    opacity: 0.8;
    text-align: center;
}

.partner-message {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--primary-navy);
    border-radius: 8px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.partner-message h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.partner-message p {
    color: var(--primary-white);
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
}

/* Current Partners Section */
.current-partners {
    padding: 2rem 0;
    background: var(--primary-light-silver);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.partner-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    margin-bottom: 1rem;
}

.partner-info h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-info p {
    color: var(--primary-navy);
    opacity: 0.8;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 2rem 0;
    background: var(--primary-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.6;
} 

/* Creator Section - White Background */
.creator-section {
    background: var(--primary-white);
    color: var(--primary-navy);
}

.creator-section .team-detail-header h2 {
    color: var(--primary-navy);
}

.creator-section .team-detail-header .team-description {
    color: var(--primary-navy);
    opacity: 0.8;
}

.creator-section .team-info-detail h3 {
    color: var(--primary-navy);
}

.creator-section .team-info-detail p {
    color: var(--primary-navy);
    opacity: 0.8;
}

.creator-section .team-achievements h4 {
    color: var(--primary-navy);
}

.creator-section .team-achievements li {
    color: var(--primary-navy);
    opacity: 0.8;
}

.creator-section .team-members h3 {
    color: var(--primary-navy);
}

.creator-section .member-card {
    background: var(--primary-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.1);
}

.creator-section .member-card:hover {
    background: var(--primary-white);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(7, 26, 48, 0.15);
}

.creator-section .member-card h4 {
    color: var(--primary-navy);
}

.creator-section .member-card p {
    color: var(--primary-navy);
    opacity: 0.7;
}

.creator-section .member-avatar {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    color: var(--primary-white);
}

/* Team Detail Pages */
.team-overview {
    padding: 4rem 0;
    background: var(--primary-white);
}

.team-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-hero-content h2 {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.team-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-navy);
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.team-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-detail-section {
    padding: 5rem 0;
    background: var(--primary-light-silver);
}

.team-detail-section .team-detail-content {
    gap: 5rem;
}

.team-philosophy {
    margin-top: 2rem;
}

.team-philosophy h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-philosophy p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.6;
}

.member-details {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-role {
    background: var(--primary-gold);
    color: var(--primary-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.member-specialty {
    color: var(--primary-navy);
    opacity: 0.7;
    font-size: 0.9rem;
    font-style: italic;
}

/* Team Schedule */
.team-schedule {
    padding: 4rem 0;
    background: var(--primary-white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-item {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    transition: all 0.4s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(7, 26, 48, 0.15);
}

.schedule-day {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-content h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.schedule-content p {
    color: var(--primary-navy);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.schedule-time {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Team Services */
.team-services {
    padding: 4rem 0;
    background: var(--primary-light-silver);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(7, 26, 48, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.service-item h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.6;
}

/* Content Portfolio */
.content-portfolio {
    padding: 4rem 0;
    background: var(--primary-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(7, 26, 48, 0.15);
}

.portfolio-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.portfolio-item h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-item p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.6;
}

/* Player Detail Pages */
.player-overview {
    padding: 4rem 0;
    background: var(--primary-white);
}

.player-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.player-hero-content h2 {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.player-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-navy);
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.player-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-hero-image .player-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.player-detail-section {
    padding: 5rem 0;
    background: var(--primary-light-silver);
}

.player-detail-section .player-detail-content {
    gap: 5rem;
}

.player-info-detail h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.player-info-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--primary-navy);
    opacity: 0.8;
}

.player-info-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .player-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.player-info-group {
    background: var(--primary-white);
    border: var(--border-gold);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    height: 100%;
}

.player-info-group h4 {
    margin: 0 0 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 1px;
}

.player-meta {
    margin: 0;
}

.player-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.player-meta-row dt {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.player-meta-row dd {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 0.05em;
}

.player-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.player-info-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--primary-navy);
    font-size: 1rem;
    line-height: 1.7;
}

.player-info-list li::before {
    content: '';
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.player-info-list.link-list li::before {
    display: none;
}

.player-info-list.link-list a {
    color: var(--primary-navy);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.player-info-list.link-list a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.player-achievements h4 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.player-achievements ul {
    list-style: none;
    padding: 0;
}

.player-achievements li {
    padding: 0.8rem 0;
    color: var(--primary-navy);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

.player-achievements li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.player-philosophy {
    margin-top: 2rem;
}

.player-philosophy h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.player-philosophy p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.6;
}

.player-stats h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(7, 26, 48, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stat-card h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-value {
    color: var(--primary-navy);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Player Equipment */
.player-equipment {
    padding: 4rem 0;
    background: var(--primary-white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.equipment-item {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(7, 26, 48, 0.08);
    transition: all 0.4s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(7, 26, 48, 0.15);
}

.equipment-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.equipment-item h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.equipment-item p {
    color: var(--primary-navy);
    opacity: 0.8;
    line-height: 1.6;
}

/* Member Links */
.member-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.member-link:hover {
    /* Remove conflicting transform - let member-card handle the hover effect */
}

.member-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(7, 26, 48, 0.15);
}

/* Player Achievements Section */
.player-achievements {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark-navy) 100%);
}

.player-achievements .section-header h2 {
    color: var(--primary-gold);
}

.player-achievements .section-subtitle {
    color: var(--primary-white);
    opacity: 0.9;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-light-gold);
}

.achievement-date {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.achievement-content h4 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.achievement-content p {
    color: var(--primary-navy);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.achievement-prize {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
} 

/* Teams Call to Action */
.teams-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light-navy) 100%);
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 15px 50px rgba(7, 26, 48, 0.2);
    position: relative;
    overflow: hidden;
}

.teams-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.teams-cta h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.teams-cta p {
    font-size: 1.2rem;
    color: var(--primary-white);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.teams-cta .btn {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    background: var(--primary-gold);
    color: var(--primary-black);
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.teams-cta .btn:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Enhanced responsive design for teams */
@media (max-width: 768px) {
    .teams {
        padding: 4rem 0;
    }
    
    .teams .section-header h2 {
        font-size: 3rem;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .team-card {
        margin: 0 1rem;
    }
    
    .teams-cta {
        margin: 3rem 1rem 0;
        padding: 2rem;
    }
    
    .teams-cta h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .teams .section-header h2 {
        font-size: 2.5rem;
    }
    
    .team-info {
        padding: 2rem;
    }
    
    .team-info h3 {
        font-size: 1.8rem;
    }
    
    .teams-cta h3 {
        font-size: 1.8rem;
    }
}

/* Player Overview - Enhanced Design */
.player-overview-enhanced {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-light-silver) 100%);
    position: relative;
    overflow: hidden;
}

.player-overview-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.overview-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.overview-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.overview-header p {
    font-size: 1.3rem;
    color: var(--primary-navy);
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 1px;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.overview-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 8px 30px rgba(7, 26, 48, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(7, 26, 48, 0.15), 0 0 40px rgba(212, 175, 55, 0.1);
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-light-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-white);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.overview-card:hover .overview-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.overview-card h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

.overview-card p {
    color: var(--primary-navy);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.overview-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.overview-stat:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: translateY(-3px);
}

.overview-stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.overview-stat-label {
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.overview-highlight {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark-navy) 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    color: var(--primary-white);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
}

.overview-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.overview-highlight h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.overview-highlight p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.overview-highlight .highlight-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Responsive design for enhanced overview */
@media (max-width: 768px) {
    .overview-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-card {
        padding: 2.5rem 2rem;
    }
    
    .overview-header h2 {
        font-size: 2.5rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
}

/* HOMEページ専用のMEMBERセクションスタイル - シンプルでクール */
.teams .team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.teams .team-icon.fallback {
    width: 60px;
    height: 60px;
    color: var(--primary-gold);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    display: none;
}

.teams .team-icon.fallback svg {
    width: 100%;
    height: 100%;
}

/* 画像がない場合のフォールバック表示 */
.team-card:not(:has(.team-photo[src])) .team-icon.fallback,
.team-card .team-photo[src=""] + .team-icon.fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}

.teams .team-card:hover .team-icon.fallback {
    transform: scale(1.05);
    color: var(--primary-light-gold);
}

.teams .team-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.teams .team-card:hover .team-info h3 {
    color: var(--primary-gold);
}

.teams .team-info p {
    color: var(--primary-navy);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Responsive Design - スマホ専用 */
@media (max-width: 767px) {
    /* Navigation - スマホ用 */
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-logo {
        margin-left: 0;
        gap: 0.5rem;
    }
    
    .nav-logo .logo-img {
        height: 35px;
    }
    
    .nav-brand-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Section - スマホ用 */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Section Headers - スマホ用 */
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* About Section - スマホ用 */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Teams Section - スマホ用 */
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 1rem 2rem;
    }
    
    .team-card {
        margin: 0;
    }
    
    .team-info {
        padding: 2rem;
    }
    
    .team-info h3 {
        font-size: 1.8rem;
    }
    
    /* News Section - スマホ用 */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card {
        padding: 1.5rem;
    }
    
    .news-article-hero {
        padding: 4.5rem 0 3.5rem;
    }
    
    .news-article-hero h1 {
        font-size: 2.3rem;
    }
    
    .news-article-meta {
        gap: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-body {
        padding: 2.5rem 1.8rem;
        border-radius: 18px;
    }
    
    .article-lead {
        font-size: 1.05rem;
    }
    
    .article-section h2 {
        font-size: 1.4rem;
    }
    
    .cta-card {
        padding: 2.5rem 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Contact Section - スマホ用 */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
    
    /* Footer - スマホ用 */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links,
    .footer-social {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    /* 2列レイアウトを実現するためのコンテナ */
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        grid-column: 1;
        text-align: left;
    }
    
    .footer-social {
        grid-column: 2;
        text-align: left;
    }
    
    /* Container - スマホ用 */
    .container {
        padding: 0 15px;
    }
}

/* さらに小さいスマホ用 */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 0.8rem;
    }
    
    .nav-logo {
        gap: 0.4rem;
    }
    
    .nav-logo .logo-img {
        height: 30px;
    }
    
    .nav-brand-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .team-info h3 {
        font-size: 1.6rem;
    }
    
    .news-article-hero {
        padding: 4rem 0 3rem;
    }
    
    .news-article-hero h1 {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 2.2rem 1.4rem;
    }
    
    .cta-card {
        padding: 2.2rem 1.4rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links,
    .footer-social {
        gap: 0.6rem;
    }
}

/* 極小スマホ用 */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.5rem 0.6rem;
    }
    
    .nav-logo {
        gap: 0.3rem;
    }
    
    .nav-logo .logo-img {
        height: 28px;
    }
    
    .nav-brand-text {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-links,
    .footer-social {
        gap: 0.5rem;
    }
}

/* 超極小スマホ用 */
@media (max-width: 320px) {
    .nav-container {
        padding: 0.4rem 0.5rem;
    }
    
    .nav-logo {
        gap: 0.25rem;
    }
    
    .nav-logo .logo-img {
        height: 25px;
    }
    
    .nav-brand-text {
        font-size: 0.75rem;
        letter-spacing: 0.2px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}
