/* Reset and base styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

:root {
    --background-color: #0a0a0a;
    --surface-color: rgba(20, 20, 20, 0.85);
    --surface-color-alt: #1a1a1a;
    --primary-color: #a82828;
    --primary-color-dark: #7d1f1f;
    --primary-color-light: #c93636;
    --accent-color: #8a1f1f;
    --border-color: rgba(138, 31, 31, 0.2);
    --text-color: #e8e6e3;
    --text-muted: #a0a0a0;
    --text-secondary: #c5c5c5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 32px rgba(168, 40, 40, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --spacing-unit: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--background-color);
    background-image: url('img/Locations45.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-weight: 400;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.88) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Blood drip effect at top */
.blood-drip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: 1000;
    box-shadow: 0 0 16px rgba(168, 40, 40, 0.3);
}

/* Header */
header {
    text-align: center;
    padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 8);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.game-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 0 4px 24px rgba(168, 40, 40, 0.4);
    margin-bottom: calc(var(--spacing-unit) * 2);
    letter-spacing: 4px;
    font-weight: 300;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 4px 24px rgba(168, 40, 40, 0.4);
    }
    50% {
        text-shadow: 0 4px 32px rgba(168, 40, 40, 0.6);
    }
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 4px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 3);
    flex: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 3);
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    margin-bottom: calc(var(--spacing-unit) * 8);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-color);
}

.hero-content h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 2.5);
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto calc(var(--spacing-unit) * 3);
    color: var(--text-secondary);
    font-weight: 300;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: #ffffff;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
    border: none;
    letter-spacing: 0.3px;
}

.discord-button:hover {
    background: linear-gradient(135deg, #4752C4 0%, #3c45a5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88, 101, 242, 0.5);
}

.discord-button:active {
    transform: translateY(0);
}

.discord-icon {
    width: 22px;
    height: 22px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1);
    background-color: var(--surface-color);
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Teaser Section */
.teaser-section {
    text-align: center;
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 8);
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.teaser-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--primary-color-light);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Preview Section */
.preview-section {
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.preview-section h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 6);
    font-weight: 300;
    letter-spacing: 2px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    max-width: 900px;
    margin: 0 auto;
}

.preview-item {
    text-align: center;
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 3);
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.preview-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--primary-color);
}

.preview-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.preview-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Disciplines Section */
.disciplines-section {
    margin-bottom: calc(var(--spacing-unit) * 10);
    padding: calc(var(--spacing-unit) * 3);
}

.disciplines-section h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 8);
    font-weight: 300;
    letter-spacing: 2px;
}

.disciplines-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discipline-icons-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.discipline-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 40, 40, 0.08) 0%, rgba(168, 40, 40, 0.02) 50%, transparent 100%);
    margin: -40px 0 0 -40px;
}

.discipline-icon:hover {
    z-index: 20;
    background: radial-gradient(circle, rgba(168, 40, 40, 0.15) 0%, rgba(168, 40, 40, 0.05) 50%, transparent 100%);
    scale: 1.15;
}

.discipline-icon img {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 4px 12px rgba(168, 40, 40, 0.4));
    transition: filter 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.discipline-icon:hover img {
    filter: drop-shadow(0 6px 20px rgba(168, 40, 40, 0.7));
    animation-play-state: paused;
}

.discipline-name {
    font-size: 0.85rem;
    color: var(--text-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.discipline-icon:hover .discipline-name {
    opacity: 1;
}

/* Position each discipline icon in a perfect circle using rotation transform */
/* 11 disciplines: 360deg / 11 = 32.727deg per icon, radius: 280px */
.discipline-icon[data-discipline="animalism"] {
    transform: rotate(0deg) translate(280px) rotate(0deg);
}

.discipline-icon[data-discipline="animalism"] img {
    animation-delay: 0s;
}

.discipline-icon[data-discipline="auspex"] {
    transform: rotate(32.727deg) translate(280px) rotate(-32.727deg);
}

.discipline-icon[data-discipline="auspex"] img {
    animation-delay: 0.3s;
}

.discipline-icon[data-discipline="celerity"] {
    transform: rotate(65.454deg) translate(280px) rotate(-65.454deg);
}

.discipline-icon[data-discipline="celerity"] img {
    animation-delay: 0.6s;
}

.discipline-icon[data-discipline="dominate"] {
    transform: rotate(98.181deg) translate(280px) rotate(-98.181deg);
}

.discipline-icon[data-discipline="dominate"] img {
    animation-delay: 0.9s;
}

.discipline-icon[data-discipline="fortitude"] {
    transform: rotate(130.908deg) translate(280px) rotate(-130.908deg);
}

.discipline-icon[data-discipline="fortitude"] img {
    animation-delay: 1.2s;
}

.discipline-icon[data-discipline="obfuscate"] {
    transform: rotate(163.635deg) translate(280px) rotate(-163.635deg);
}

.discipline-icon[data-discipline="obfuscate"] img {
    animation-delay: 1.5s;
}

.discipline-icon[data-discipline="oblivion"] {
    transform: rotate(196.362deg) translate(280px) rotate(-196.362deg);
}

.discipline-icon[data-discipline="oblivion"] img {
    animation-delay: 1.8s;
}

.discipline-icon[data-discipline="potence"] {
    transform: rotate(229.089deg) translate(280px) rotate(-229.089deg);
}

.discipline-icon[data-discipline="potence"] img {
    animation-delay: 2.1s;
}

.discipline-icon[data-discipline="presence"] {
    transform: rotate(261.816deg) translate(280px) rotate(-261.816deg);
}

.discipline-icon[data-discipline="presence"] img {
    animation-delay: 2.4s;
}

.discipline-icon[data-discipline="protean"] {
    transform: rotate(294.543deg) translate(280px) rotate(-294.543deg);
}

.discipline-icon[data-discipline="protean"] img {
    animation-delay: 2.7s;
}

.discipline-icon[data-discipline="thaumaturgy"] {
    transform: rotate(327.27deg) translate(280px) rotate(-327.27deg);
}

.discipline-icon[data-discipline="thaumaturgy"] img {
    animation-delay: 3s;
}

.master-disciplines-box {
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 20, 20, 0.95) 100%);
    backdrop-filter: blur(16px);
    padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    max-width: 500px;
    text-align: center;
}

.master-disciplines-box h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
    letter-spacing: 2px;
    font-weight: 300;
}

.master-disciplines-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 1rem;
    font-weight: 300;
}

.master-disciplines-box p:last-child {
    margin-bottom: 0;
}

.discipline-hint {
    font-style: italic;
    color: var(--primary-color-light);
    font-weight: 400;
    margin-top: calc(var(--spacing-unit) * 3);
}

/* Clans Section */
.clans-section {
    margin-bottom: calc(var(--spacing-unit) * 10);
    padding: calc(var(--spacing-unit) * 3);
}

.clans-section h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 8);
    font-weight: 300;
    letter-spacing: 2px;
}

.clans-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clan-icons-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clan-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 40, 40, 0.08) 0%, rgba(168, 40, 40, 0.02) 50%, transparent 100%);
    margin: -40px 0 0 -40px;
}

.clan-icon:hover {
    z-index: 20;
    background: radial-gradient(circle, rgba(168, 40, 40, 0.15) 0%, rgba(168, 40, 40, 0.05) 50%, transparent 100%);
    scale: 1.15;
}

.clan-icon img {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 4px 12px rgba(168, 40, 40, 0.4));
    transition: filter 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.clan-icon:hover img {
    filter: drop-shadow(0 6px 20px rgba(168, 40, 40, 0.7));
    animation-play-state: paused;
}

.clan-name {
    font-size: 0.8rem;
    color: var(--text-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.clan-icon:hover .clan-name {
    opacity: 1;
}

/* Position each clan icon in a perfect circle using rotation transform */
/* 16 clans: 360deg / 16 = 22.5deg per icon, radius: 320px */
.clan-icon[data-clan="brujah"] {
    transform: rotate(0deg) translate(320px) rotate(0deg);
}

.clan-icon[data-clan="brujah"] img {
    animation-delay: 0s;
}

.clan-icon[data-clan="gangrel"] {
    transform: rotate(22.5deg) translate(320px) rotate(-22.5deg);
}

.clan-icon[data-clan="gangrel"] img {
    animation-delay: 0.2s;
}

.clan-icon[data-clan="malkavian"] {
    transform: rotate(45deg) translate(320px) rotate(-45deg);
}

.clan-icon[data-clan="malkavian"] img {
    animation-delay: 0.4s;
}

.clan-icon[data-clan="nosferatu"] {
    transform: rotate(67.5deg) translate(320px) rotate(-67.5deg);
}

.clan-icon[data-clan="nosferatu"] img {
    animation-delay: 0.6s;
}

.clan-icon[data-clan="toreador"] {
    transform: rotate(90deg) translate(320px) rotate(-90deg);
}

.clan-icon[data-clan="toreador"] img {
    animation-delay: 0.8s;
}

.clan-icon[data-clan="tremere"] {
    transform: rotate(112.5deg) translate(320px) rotate(-112.5deg);
}

.clan-icon[data-clan="tremere"] img {
    animation-delay: 1s;
}

.clan-icon[data-clan="ventrue"] {
    transform: rotate(135deg) translate(320px) rotate(-135deg);
}

.clan-icon[data-clan="ventrue"] img {
    animation-delay: 1.2s;
}

.clan-icon[data-clan="banuhaqim"] {
    transform: rotate(157.5deg) translate(320px) rotate(-157.5deg);
}

.clan-icon[data-clan="banuhaqim"] img {
    animation-delay: 1.4s;
}

.clan-icon[data-clan="hecata"] {
    transform: rotate(180deg) translate(320px) rotate(-180deg);
}

.clan-icon[data-clan="hecata"] img {
    animation-delay: 1.6s;
}

.clan-icon[data-clan="lasombra"] {
    transform: rotate(202.5deg) translate(320px) rotate(-202.5deg);
}

.clan-icon[data-clan="lasombra"] img {
    animation-delay: 1.8s;
}

.clan-icon[data-clan="ministry"] {
    transform: rotate(225deg) translate(320px) rotate(-225deg);
}

.clan-icon[data-clan="ministry"] img {
    animation-delay: 2s;
}

.clan-icon[data-clan="ravnos"] {
    transform: rotate(247.5deg) translate(320px) rotate(-247.5deg);
}

.clan-icon[data-clan="ravnos"] img {
    animation-delay: 2.2s;
}

.clan-icon[data-clan="salubri"] {
    transform: rotate(270deg) translate(320px) rotate(-270deg);
}

.clan-icon[data-clan="salubri"] img {
    animation-delay: 2.4s;
}

.clan-icon[data-clan="tzimisce"] {
    transform: rotate(292.5deg) translate(320px) rotate(-292.5deg);
}

.clan-icon[data-clan="tzimisce"] img {
    animation-delay: 2.6s;
}

.clan-icon[data-clan="caitiff"] {
    transform: rotate(315deg) translate(320px) rotate(-315deg);
}

.clan-icon[data-clan="caitiff"] img {
    animation-delay: 2.8s;
}

.clan-icon[data-clan="thinblood"] {
    transform: rotate(337.5deg) translate(320px) rotate(-337.5deg);
}

.clan-icon[data-clan="thinblood"] img {
    animation-delay: 3s;
}

.master-clans-box {
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 20, 20, 0.95) 100%);
    backdrop-filter: blur(16px);
    padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    max-width: 500px;
    text-align: center;
}

.master-clans-box h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
    letter-spacing: 2px;
    font-weight: 300;
}

.master-clans-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 1rem;
    font-weight: 300;
}

.master-clans-box p:last-child {
    margin-bottom: 0;
}

.clan-hint {
    font-style: italic;
    color: var(--primary-color-light);
    font-weight: 400;
    margin-top: calc(var(--spacing-unit) * 3);
}

/* Cities Section */
.cities-section {
    margin-bottom: calc(var(--spacing-unit) * 10);
    padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 3);
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-color);
}

.cities-section h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-weight: 300;
    letter-spacing: 2px;
}

.cities-content {
    max-width: 900px;
    margin: 0 auto;
}

.cities-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 5);
    font-weight: 300;
}

.cities-screenshots {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 4);
    max-width: 800px;
    margin: 0 auto;
}

.screenshot-wrapper {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.city-screenshot {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.city-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--primary-color);
}

.screenshot-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
}

/* Features Section */
.features-section {
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.features-section h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 6);
    font-weight: 300;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.feature-card {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-align: center;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    font-weight: 300;
}

/* Game Systems Section */
.game-systems-section {
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.game-systems-section h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 6);
    font-weight: 300;
    letter-spacing: 2px;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.system-box {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.system-box h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: calc(var(--spacing-unit) * 1.5);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.system-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 3);
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    margin-bottom: calc(var(--spacing-unit) * 10);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-content h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-weight: 300;
    letter-spacing: 2px;
}

.coming-soon-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 4);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.coming-soon-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: calc(var(--spacing-unit) * 3);
    letter-spacing: 2px;
}

.dev-note {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-weight: 300;
}

.dev-note:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-muted);
}

/* Lore Section */
.lore-section {
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.lore-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.lore-quote {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: calc(var(--spacing-unit) * 4);
    color: var(--primary-color-light);
    font-style: italic;
    position: relative;
    padding: 0 calc(var(--spacing-unit) * 4);
    font-weight: 300;
}

.lore-quote::before {
    content: '"';
    font-size: 3.5rem;
    position: absolute;
    left: 0;
    top: -16px;
    color: var(--primary-color);
    opacity: 0.3;
}

.lore-quote::after {
    content: '"';
    font-size: 3.5rem;
    position: absolute;
    right: 0;
    bottom: -32px;
    color: var(--primary-color);
    opacity: 0.3;
}

.lore-subtext {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: calc(var(--spacing-unit) * 4) 0;
    margin-top: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 3);
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 4);
}

.footer-logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.footer-text {
    flex: 1;
    text-align: center;
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-weight: 300;
}

.copyright-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: var(--primary-color-light);
    text-decoration: underline;
}

.version-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    font-size: 0.9rem;
}

.app-name {
    font-weight: 500;
    color: var(--text-color);
}

.version-box {
    background-color: var(--surface-color-alt);
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .teaser-text {
        font-size: 1.3rem;
    }
    
    .preview-section h2,
    .cta-content h2,
    .disciplines-section h2,
    .clans-section h2 {
        font-size: 2.2rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .container {
        padding: calc(var(--spacing-unit) * 2);
    }
    
    .lore-content {
        padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 3);
    }
    
    .lore-quote {
        font-size: 1.2rem;
        padding: 0 calc(var(--spacing-unit) * 2);
    }
    
    .coming-soon-text {
        font-size: 1.8rem;
    }
    
    .coming-soon-box {
        padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 3);
    }

    /* Disciplines responsive */
    .disciplines-container {
        min-height: 450px;
        max-width: 100%;
        overflow: hidden;
    }

    .discipline-icon {
        padding: calc(var(--spacing-unit) * 1);
    }

    .discipline-icon img {
        width: 40px;
        height: 40px;
    }

    .discipline-name {
        font-size: 0.7rem;
    }

    /* Reduce circle radius for tablets */
    .discipline-icon[data-discipline="animalism"] {
        transform: rotate(0deg) translate(200px) rotate(0deg);
    }

    .discipline-icon[data-discipline="auspex"] {
        transform: rotate(32.727deg) translate(200px) rotate(-32.727deg);
    }

    .discipline-icon[data-discipline="celerity"] {
        transform: rotate(65.454deg) translate(200px) rotate(-65.454deg);
    }

    .discipline-icon[data-discipline="dominate"] {
        transform: rotate(98.181deg) translate(200px) rotate(-98.181deg);
    }

    .discipline-icon[data-discipline="fortitude"] {
        transform: rotate(130.908deg) translate(200px) rotate(-130.908deg);
    }

    .discipline-icon[data-discipline="obfuscate"] {
        transform: rotate(163.635deg) translate(200px) rotate(-163.635deg);
    }

    .discipline-icon[data-discipline="oblivion"] {
        transform: rotate(196.362deg) translate(200px) rotate(-196.362deg);
    }

    .discipline-icon[data-discipline="potence"] {
        transform: rotate(229.089deg) translate(200px) rotate(-229.089deg);
    }

    .discipline-icon[data-discipline="presence"] {
        transform: rotate(261.816deg) translate(200px) rotate(-261.816deg);
    }

    .discipline-icon[data-discipline="protean"] {
        transform: rotate(294.543deg) translate(200px) rotate(-294.543deg);
    }

    .discipline-icon[data-discipline="thaumaturgy"] {
        transform: rotate(327.27deg) translate(200px) rotate(-327.27deg);
    }

    .master-disciplines-box {
        padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2.5);
        max-width: 350px;
    }

    .master-disciplines-box h3 {
        font-size: 1.7rem;
    }

    .master-disciplines-box p {
        font-size: 0.95rem;
    }

    /* Clans responsive */
    .clans-container {
        min-height: 500px;
        max-width: 100%;
        overflow: hidden;
    }

    .clan-icon {
        padding: calc(var(--spacing-unit) * 1);
    }

    .clan-icon img {
        width: 36px;
        height: 36px;
    }

    .clan-name {
        font-size: 0.65rem;
    }

    /* Reduce circle radius for tablets */
    .clan-icon[data-clan="brujah"] {
        transform: rotate(0deg) translate(220px) rotate(0deg);
    }

    .clan-icon[data-clan="gangrel"] {
        transform: rotate(22.5deg) translate(220px) rotate(-22.5deg);
    }

    .clan-icon[data-clan="malkavian"] {
        transform: rotate(45deg) translate(220px) rotate(-45deg);
    }

    .clan-icon[data-clan="nosferatu"] {
        transform: rotate(67.5deg) translate(220px) rotate(-67.5deg);
    }

    .clan-icon[data-clan="toreador"] {
        transform: rotate(90deg) translate(220px) rotate(-90deg);
    }

    .clan-icon[data-clan="tremere"] {
        transform: rotate(112.5deg) translate(220px) rotate(-112.5deg);
    }

    .clan-icon[data-clan="ventrue"] {
        transform: rotate(135deg) translate(220px) rotate(-135deg);
    }

    .clan-icon[data-clan="banuhaqim"] {
        transform: rotate(157.5deg) translate(220px) rotate(-157.5deg);
    }

    .clan-icon[data-clan="hecata"] {
        transform: rotate(180deg) translate(220px) rotate(-180deg);
    }

    .clan-icon[data-clan="lasombra"] {
        transform: rotate(202.5deg) translate(220px) rotate(-202.5deg);
    }

    .clan-icon[data-clan="ministry"] {
        transform: rotate(225deg) translate(220px) rotate(-225deg);
    }

    .clan-icon[data-clan="ravnos"] {
        transform: rotate(247.5deg) translate(220px) rotate(-247.5deg);
    }

    .clan-icon[data-clan="salubri"] {
        transform: rotate(270deg) translate(220px) rotate(-270deg);
    }

    .clan-icon[data-clan="tzimisce"] {
        transform: rotate(292.5deg) translate(220px) rotate(-292.5deg);
    }

    .clan-icon[data-clan="caitiff"] {
        transform: rotate(315deg) translate(220px) rotate(-315deg);
    }

    .clan-icon[data-clan="thinblood"] {
        transform: rotate(337.5deg) translate(220px) rotate(-337.5deg);
    }

    .master-clans-box {
        padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2.5);
        max-width: 350px;
    }

    .master-clans-box h3 {
        font-size: 1.7rem;
    }

    .master-clans-box p {
        font-size: 0.95rem;
    }

    /* Cities responsive */
    .cities-section {
        padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
    }

    .cities-section h2 {
        font-size: 2.2rem;
    }

    .cities-description {
        font-size: 1.05rem;
    }

    .cities-screenshots {
        gap: calc(var(--spacing-unit) * 3);
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    header {
        padding: 2rem 1rem 2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .teaser-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .preview-icon {
        font-size: 2.5rem;
    }
    
    .lore-quote::before,
    .lore-quote::after {
        font-size: 3rem;
    }
    
    .version-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 2);
    }

    .footer-logo {
        width: 100px;
    }

    /* Disciplines mobile - switch to grid layout */
    .disciplines-container {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .discipline-icons-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        left: auto;
        transform: none;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: calc(var(--spacing-unit) * 2);
        padding: calc(var(--spacing-unit) * 3) 0;
        order: 2;
    }

    .discipline-icon {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc(var(--spacing-unit) * 1);
    }

    .discipline-icon img {
        width: 48px;
        height: 48px;
    }

    .discipline-name {
        font-size: 0.75rem;
        opacity: 1;
    }

    .master-disciplines-box {
        padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
        max-width: 100%;
        margin: 0;
        order: 1;
    }

    .master-disciplines-box h3 {
        font-size: 1.5rem;
    }

    .master-disciplines-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Clans mobile - switch to grid layout */
    .clans-container {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .clan-icons-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        left: auto;
        transform: none;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: calc(var(--spacing-unit) * 1.5);
        padding: calc(var(--spacing-unit) * 3) 0;
        order: 2;
    }

    .clan-icon {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc(var(--spacing-unit) * 0.5);
    }

    .clan-icon img {
        width: 40px;
        height: 40px;
    }

    .clan-name {
        font-size: 0.65rem;
        opacity: 1;
    }

    .master-clans-box {
        padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
        max-width: 100%;
        margin: 0;
        order: 1;
    }

    .master-clans-box h3 {
        font-size: 1.5rem;
    }

    .master-clans-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Cities mobile */
    .cities-section {
        padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
    }

    .cities-section h2 {
        font-size: 1.8rem;
    }

    .cities-description {
        font-size: 1rem;
    }

    .cities-screenshots {
        gap: calc(var(--spacing-unit) * 3);
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .preview-item,
    .lore-content {
        opacity: 0;
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .preview-item:nth-child(1) { animation-delay: 0.1s; }
    .preview-item:nth-child(2) { animation-delay: 0.2s; }
    .preview-item:nth-child(3) { animation-delay: 0.3s; }
    .preview-item:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
