/* Temel Stillemeler */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #229c0a;
    --secondary-color: #0f1923;
    --text-color: #ffffff;
    --card-bg: #1a2730;
    --btn-hover: #229c0a;
    --max-width: 1200px; /* Maksimum genişlik tanımı */
}

body {
    background: radial-gradient(circle at 20% 50%, rgba(34, 156, 10, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(6, 194, 133, 0.03) 0%, transparent 50%);;
    background-color: #000000;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Bölümü */
header {
    background-color: rgba(15, 25, 35, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
}

.demo-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.demo-logo img {
    height: 30px;
}

.demo-nav ul {
    display: flex;
    gap: 20px;
}

.demo-nav ul li a {
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: color 0.3s;
}

.demo-nav ul li a i {
    margin-right: 5px;
    color: var(--primary-color);
}

.demo-nav ul li a:hover {
    color: var(--primary-color);
}

.demo-btn-try {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.demo-btn-try:hover {
    background-color: var(--btn-hover);
}

/* Hero Bölümü */
.demo-hero {
    text-align: center;
    padding: 120px 15px 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.demo-hero h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #229c0a 0%, rgb(79, 209, 197) 25%, #229c0a 50%, rgb(79, 209, 197) 75%, #229c0a 100%) 0% 0% / 200% text;
    animation: 3s linear 0s infinite normal none running shine;
}


@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.demo-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0px auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Arama ve Filtreleme */
.demo-search-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto 30px;
}

.demo-search-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.demo-search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.demo-search-container input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border-radius: 50px;
    border: 1px solid rgba(34, 156, 10, 0.19);
    background: rgba(0, 0, 0, 0.2);
    color: rgb(255, 255, 255);
    font-size: 1rem;
    transition: 0.3s;
}

.demo-search-container input::placeholder {
    color: #888888;
}

.demo-search-container input:focus{
    outline: none;
    border-color: #229c0a;
    box-shadow: rgba(34, 156, 10, 0.19) 0px 0px 0px 3px;
}

.demo-filters {
    display: flex;
    gap: 10px;
}

.demo-filter-btn {
    background-color: transparent;
    border: 1px solid rgba(34, 156, 10, 0.19);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-filter-btn.active, .demo-filter-btn:hover {
    background: #229c0a;
    color: var(--secondary-color);
}

/* Demo Kartları */
.demo-cards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2'li sıralama */
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto 50px;
    padding: 0 15px;
}

.demo-card-item {
    background:rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 156, 10, 0.125);
    overflow: hidden;
    transition: transform 0.3s;
}

.demo-card-item:hover {
    transform: translateY(-10px);
}

.demo-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.demo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.demo-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.demo-play-button i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.demo-play-button:hover {
    opacity: 1;
}

.demo-card-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    font-size: 0.8rem;
}

.demo-card-stats i {
    color: var(--primary-color);
    margin-right: 5px;
}

.demo-card-content {
    padding: 20px;
}

.demo-card-content h3 {
    color: white;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.demo-card-content p {
    color: #bbbbbb;
    margin-bottom: 15px;
    font-size: 1rem;
}

.demo-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.demo-tag {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: #08fcac20;
    color: #08fcac;
    font-size: 0.85rem;
    display: flex
;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #08fcac40;
}

.demo-card-actions {
    display: flex;
    justify-content: space-between;
}

.demo-btn-primary, .demo-btn-secondary {
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.demo-btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    flex: 1 30px;
    margin-right: 10px;
}

.demo-btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    flex: 1;
}

.demo-btn-primary:hover {
    background-color: var(--btn-hover);
}

.demo-btn-secondary:hover {
    background-color: rgba(8, 252, 172, 0.1);
}

/* Şirket Bilgileri Bölümü */
.demo-company-info {
    background-color: var(--secondary-color);
    padding: 50px 15px;
}

.demo-company-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.demo-info-column p {
    color: #bbbbbb;
    font-size: 0.9rem;
}

.demo-quick-links, .demo-product-links {
    margin-top: 10px;
}

.demo-quick-links li, .demo-product-links li {
    margin-bottom: 8px;
}

.demo-quick-links li a, .demo-product-links li a {
    color: #bbbbbb;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.demo-quick-links li a:hover, .demo-product-links li a:hover {
    color: var(--primary-color);
}

.demo-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.demo-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.demo-social-links a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Footer */
.demo-footer {
    background-color: #0a1017;
    padding: 20px 15px;
    text-align: center;
}

.demo-footer p {
    max-width: var(--max-width);
    margin: 0 auto;
    color: #888888;
    font-size: 0.8rem;
}

/* Responsive Tasarım */
@media (max-width: 1240px) {
    :root {
        --max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    :root {
        --max-width: 900px;
    }
    
    .demo-header-inner {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .demo-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .demo-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .demo-search-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .demo-filters {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .demo-cards-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .demo-hero h1 {
        padding-top: 20px;
        font-size: 5rem;
        line-height: 60px;
    }
    
    .demo-cards-list {
        grid-template-columns: 1fr;
    }
    
    .demo-company-inner {
        padding: 30px 0;
    }
}