/* PlayNiche.net - Unique Custom Design for Switzerland */
/* Modern & Fresh Design with Different Color Scheme */

:root {
    --playniche-primary: #10b981;
    --playniche-secondary: #06b6d4;
    --playniche-accent: #f59e0b;
    --playniche-dark: #0f172a;
    --playniche-light: #fafafa;
    --playniche-gray: #64748b;
    --playniche-success: #22c55e;
    --playniche-error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--playniche-dark);
    background: var(--playniche-light);
}

.playniche-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.playniche-navbar {
    background: white;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--playniche-primary);
}

.playniche-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.playniche-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--playniche-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.playniche-logo:hover {
    color: var(--playniche-secondary);
    transform: scale(1.03);
}

.playniche-logo img {
    width: auto;
    height: 30px;
}

.playniche-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.playniche-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--playniche-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.playniche-nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
    margin: 0;
}

.playniche-nav-item {
    color: var(--playniche-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.625rem 1.125rem;
    border-radius: 8px;
}

.playniche-nav-item:hover,
.playniche-nav-item.active {
    color: var(--playniche-primary);
    background: rgba(16, 185, 129, 0.1);
}

.playniche-cta-button {
    background: linear-gradient(135deg, var(--playniche-primary), var(--playniche-secondary));
    color: white !important;
    padding: 0.825rem 1.75rem !important;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.playniche-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .playniche-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .playniche-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .playniche-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .playniche-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 420px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 6rem 2.5rem 2.5rem;
        gap: 3rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        align-items: stretch;
    }

    .playniche-nav-menu.active {
        right: 0;
    }

    .playniche-nav-item,
    .playniche-cta-button {
        width: 100%;
        text-align: center;
        padding: 1.125rem !important;
        font-size: 1.125rem;
    }
}

/* Hero Sections */
.playniche-banner {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    padding: 4.5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.playniche-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="white" d="M0,50 C240,100 480,0 720,50 C960,100 1200,0 1440,50 L1440,100 L0,100 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.playniche-banner-inner {
    position: relative;
    z-index: 1;
}

.playniche-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.625rem 1.75rem;
    border-radius: 30px;
    margin-bottom: 1.75rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.playniche-banner h1 {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1.75rem;
    line-height: 1.15;
}

.playniche-banner-text {
    font-size: 1.4rem;
    margin-bottom: 2.75rem;
    opacity: 0.96;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.playniche-banner-button {
    display: inline-block;
    background: white;
    color: var(--playniche-primary);
    padding: 1.125rem 2.75rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.playniche-banner-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    color: var(--playniche-secondary);
}

/* Sections */
.playniche-section {
    padding: 5.5rem 0;
}

.playniche-section-white {
    background: white;
}

.playniche-section-heading {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--playniche-dark);
}

.playniche-section-subheading {
    text-align: center;
    font-size: 1.25rem;
    color: var(--playniche-gray);
    margin-bottom: 3.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid System */
.playniche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.playniche-grid-35 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.playniche-grid-three {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.playniche-grid-four {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards */
.playniche-box {
    background: white;
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.playniche-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--playniche-primary);
}

.playniche-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--playniche-primary), var(--playniche-secondary));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
}

.playniche-box h3 {
    font-size: 1.625rem;
    margin-bottom: 1.125rem;
    color: var(--playniche-dark);
    font-weight: 700;
}

.playniche-box p {
    color: var(--playniche-gray);
    line-height: 1.8;
    font-size: 1.025rem;
}

/* Game Cards */
.playniche-entertainment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.playniche-entertainment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.playniche-game-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.playniche-game-info {
    padding: 1.75rem;
}

.playniche-game-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.875rem;
    color: var(--playniche-dark);
}

.playniche-game-description {
    color: var(--playniche-gray);
    margin-bottom: 1.75rem;
    font-size: 1.025rem;
    line-height: 1.7;
}

.playniche-play-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--playniche-primary), var(--playniche-secondary));
    color: white;
    padding: 0.925rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.playniche-play-button:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* Footer */
.playniche-footer {
    background: var(--playniche-dark);
    color: white;
    padding: 3.5rem 0 1.25rem;
}

.playniche-footer-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.playniche-footer-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 700;
}

.playniche-footer-block p {
    margin-bottom: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.playniche-footer-block a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.playniche-disclaimer-box {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem 0;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
}

.playniche-disclaimer-box a {
    color: var(--playniche-primary);
    text-decoration: none;
}

.playniche-footer-end {
    text-align: center;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.playniche-footer-end a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 0.625rem;
}

/* Cookie Banner */
.playniche-cookie-notice {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    max-width: 640px;
    width: 92%;
    animation: slideUpFade 0.5s ease;
}

@keyframes slideUpFade {
    from {
        transform: translateX(-50%) translateY(120px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.playniche-cookie-box {
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.playniche-cookie-box p {
    flex: 1;
    margin: 0;
    color: var(--playniche-dark);
    font-size: 1.025rem;
    line-height: 1.7;
}

.playniche-cookie-box i {
    font-size: 1.75rem;
    color: var(--playniche-primary);
}

.playniche-cookie-box a {
    color: var(--playniche-primary);
    text-decoration: underline;
}

.playniche-cookie-button {
    background: linear-gradient(135deg, var(--playniche-primary), var(--playniche-secondary));
    color: white;
    border: none;
    padding: 0.875rem 2.25rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.025rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.playniche-cookie-button:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Forms */
.playniche-form-container {
    max-width: 640px;
    margin: 0 auto;
}

.playniche-input-group {
    margin-bottom: 1.75rem;
}

.playniche-form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 700;
    color: var(--playniche-dark);
    font-size: 1.05rem;
}

.playniche-form-field,
.playniche-form-area {
    width: 100%;
    padding: 0.925rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.playniche-form-field:focus,
.playniche-form-area:focus {
    outline: none;
    border-color: var(--playniche-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.playniche-form-area {
    min-height: 170px;
    resize: vertical;
}

.playniche-submit-button {
    background: linear-gradient(135deg, var(--playniche-primary), var(--playniche-secondary));
    color: white;
    border: none;
    padding: 1.125rem 2.75rem;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.playniche-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.playniche-submit-button:disabled {
    background: var(--playniche-gray);
    cursor: not-allowed;
    transform: none;
}

.playniche-message-box {
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    margin-bottom: 1.75rem;
    display: none;
}

.playniche-message-box.show {
    display: block;
    animation: fadeInSlide 0.4s ease;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.playniche-success-message {
    background: #d1fae5;
    color: #065f46;
    border-left: 5px solid var(--playniche-success);
}

.playniche-error-message {
    background: #fee2e2;
    color: #991b1b;
    border-left: 5px solid var(--playniche-error);
}

/* Buttons */
.playniche-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--playniche-primary), var(--playniche-secondary));
    color: white;
    padding: 0.925rem 2.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.playniche-button:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.playniche-button-outline {
    background: transparent;
    border: 2px solid var(--playniche-primary);
    color: var(--playniche-primary);
}

.playniche-button-outline:hover {
    background: var(--playniche-primary);
    color: white;
}

/* Legal Pages */
.playniche-legal-content {
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.playniche-legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.75rem;
    color: var(--playniche-dark);
    font-weight: 800;
    line-height: 1.3;
}

.playniche-legal-content h2 {
    font-size: 1.95rem;
    margin-top: 3.25rem;
    margin-bottom: 1.5rem;
    color: var(--playniche-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.12);
}

.playniche-legal-content h2 i {
    font-size: 1.65rem;
}

.playniche-legal-content h3 {
    font-size: 1.45rem;
    margin-top: 2.25rem;
    margin-bottom: 1.125rem;
    color: var(--playniche-dark);
    font-weight: 700;
}

.playniche-legal-content h3 i {
    color: var(--playniche-primary);
    margin-right: 0.625rem;
}

.playniche-legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #475569;
    font-size: 1.075rem;
}

.playniche-legal-content p strong {
    color: var(--playniche-dark);
    font-weight: 600;
}

.playniche-legal-content ul {
    margin-bottom: 1.75rem;
    padding-left: 2.75rem;
    list-style-type: disc;
}

.playniche-legal-content li {
    margin-bottom: 0.875rem;
    line-height: 1.85;
    color: #475569;
    font-size: 1.05rem;
}

.playniche-legal-content li strong {
    color: var(--playniche-dark);
    font-weight: 600;
}

.playniche-legal-content a {
    color: var(--playniche-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.playniche-legal-content a:hover {
    color: var(--playniche-secondary);
}

.playniche-info-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-left: 6px solid var(--playniche-primary);
    padding: 2rem 2.25rem;
    border-radius: 14px;
    margin: 2.75rem 0;
    box-shadow: 0 5px 18px rgba(37, 99, 235, 0.1);
}

.playniche-info-highlight h3 {
    margin-top: 0;
    color: var(--playniche-primary);
    font-size: 1.5rem;
}

.playniche-info-highlight p {
    margin-bottom: 0;
    color: var(--playniche-dark);
    font-weight: 500;
}

.playniche-info-highlight i {
    color: var(--playniche-primary);
}

.playniche-center-text {
    text-align: center;
}

.playniche-spacing-top {
    margin-top: 2.25rem;
}

.playniche-spacing-bottom {
    margin-bottom: 2.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .playniche-banner h1 {
        font-size: 2.75rem;
    }

    .playniche-banner-text {
        font-size: 1.2rem;
    }

    .playniche-section-heading {
        font-size: 2.25rem;
    }

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

    .playniche-cookie-box {
        flex-direction: column;
        text-align: center;
    }

    /* Legal Pages Responsive */
    .playniche-legal-content {
        padding: 2.25rem 1.25rem;
        border-radius: 10px;
    }

    .playniche-legal-content h1 {
        font-size: 2.25rem;
    }

    .playniche-legal-content h2 {
        font-size: 1.6rem;
        margin-top: 2.25rem;
    }

    .playniche-legal-content h3 {
        font-size: 1.3rem;
    }

    .playniche-legal-content p,
    .playniche-legal-content li {
        font-size: 1rem;
    }

    .playniche-legal-content ul {
        padding-left: 1.75rem;
    }

    .playniche-info-highlight {
        padding: 1.5rem 1.75rem;
        margin: 2rem 0;
    }
}

