/* Playground Protection Page Styles */
.playground-hero-section {
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.9), rgba(1, 52, 64, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="playground-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23playground-pattern)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.playground-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.8), rgba(1, 52, 64, 0.6));
    z-index: 1;
}

.playground-hero-section .container {
    position: relative;
    z-index: 2;
}

.playground-hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.playground-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.playground-visual {
    position: relative;
}

.playground-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.playground-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.playground-type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.playground-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.playground-type-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.playground-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.playground-type-content ul {
    margin-top: 1rem;
}

.playground-type-content li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

/* Responsive Playground Protection Page */
@media (max-width: 768px) {
    .playground-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .playground-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .playground-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .playground-type-card {
        margin-bottom: 2rem;
    }
    
    .playground-type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .playground-hero-section {
        background-attachment: scroll;
    }
    
    .playground-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .playground-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .playground-type-card {
        margin-bottom: 2rem;
    }
    
    .installation-step {
        margin-bottom: 2rem;
    }
}

/* Custom Playground Section Styles */
.custom-playground-section {
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.02), rgba(1, 52, 64, 0.02));
    position: relative;
}

.custom-playground-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="playground-custom-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(217,112,74,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23playground-custom-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.custom-playground-section .container {
    position: relative;
    z-index: 2;
}

/* Custom Content Cards */
.custom-content-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.custom-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* Playground Applications */
.playground-applications {
    margin-top: 1.5rem;
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.application-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: rgba(4, 217, 217, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.application-item:hover {
    background: rgba(4, 217, 217, 0.1);
    transform: translateX(5px);
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(4, 217, 217, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(4, 217, 217, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Coverage Section */
.coverage-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.coverage-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coverage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.installation-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.location-group h5 {
    margin-bottom: 1rem;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-tag {
    background: rgba(4, 217, 217, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.city-tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.coverage-note {
    background: rgba(4, 217, 217, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

/* Responsive Custom Playground Section */
@media (max-width: 768px) {
    .installation-locations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .city-tags {
        justify-content: center;
    }
    
    .custom-content-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .custom-playground-section {
        padding: 2rem 0;
    }
    
    .custom-content-card,
    .coverage-section {
        padding: 1.5rem;
    }
    
    .content-icon,
    .coverage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .city-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
