/* =========================== */
/* CSS/INDEX.CSS - Ana Sayfa Stilleri */
/* =========================== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ip-info {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.ip-info span {
    color: var(--color-primary);
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-primary-large {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 10px;
    color: var(--color-text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 192, 0, 0.4);
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid var(--color-text-light);
    border-radius: 10px;
    color: var(--color-text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.hero-roleplay-summary {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.hero-roleplay-summary + p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Story Section */
.story-section {
    padding: 80px 20px;
    background: var(--color-background-dark);
}

.story-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-section h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 10px;
}

.story-section .subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 50px;
}

.story-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.full-story h3,
.summary-and-quote h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.full-story p,
.summary-and-quote p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.full-story blockquote,
.summary-and-quote blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
    margin: 20px 0;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Features Section */
.features-list {
    margin-top: 60px;
}

.features-list h2 {
    text-align: center;
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

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

.feature-card h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Register Section */
.register-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--color-background-dark) 0%, #0a1f0f 100%);
}

.register-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.register-section h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.register-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

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

.card h3 {
    color: var(--color-text-light);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-discord,
.btn-whitelist,
.btn-signal {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752C4;
}

.btn-whitelist {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-text-dark);
}

.btn-whitelist:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(225, 192, 0, 0.3);
}

.btn-signal {
    background: #3A76F0;
    color: white;
}

.btn-signal:hover {
    background: #2D5BC7;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: var(--color-background-dark);
}

.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section h2 {
    text-align: center;
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-section .subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 0.9rem;
}

/* Rules Section */
.rules-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a1f0f 0%, var(--color-background-dark) 100%);
}

.rules-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rules-section h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.rules-section .subtitle {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.rules-list {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.rules-list ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.rules-list li {
    color: var(--color-text-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li strong {
    color: var(--color-primary);
}

.rules-discord-link {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 20px 20px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-info p {
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: color 0.3s;
}

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

.footer-social .social-icon {
    display: inline-block;
    margin-right: 15px;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

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

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

    .link-cards {
        grid-template-columns: 1fr;
    }

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