﻿        :root {
            --primary: #2c5530;
            --primary-dark: #1e3a24;
            --secondary: #4a7c59;
            --accent: #e67e22;
            --accent-dark: #d35400;
            --light: #fef9f3;
            --light-gray: #f5ebe0;
            --dark: #2d3748;
            --text: #5d4037;
            --text-dark: #3e2723;
            --border: #e8d5c4;
            --success: #27ae60;
            --instagram-gradient: linear-gradient(45deg, #f9a826 0%, #e67e22 25%, #d35400 50%, #c0392b 75%, #8e44ad 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: var(--light);
        }
        
        .container {
            width: 100%;
            max-width: 935px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header - Updated with your header style */
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 1.2rem 0;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        
                
        .header-content {
                        display: grid;
             grid-template-columns: 1fr;

            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        
        
        
        /* Header */
        header {
            background: linear-gradient(135deg, rgba(15,70,125,0.9), rgba(20,100,20,0.9), rgba(90,45,15,0.9));
            
            color: white;
            padding: 20px 0;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(25,118,210,0.85), rgba(34,139,34,0.85), rgba(139,69,19,0.85)) ,
                        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 67px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
        }
        
        .hero .container {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            padding:15px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        
        /* Animasyonlar */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            }
            50% {
                box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7);
            }
            100% {
                box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            }
        }
        
        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
        }
        
        
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(44, 85, 48, 0.85), rgba(30, 58, 36, 0.9)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
        }
        
        /* Stories Section - Instagram Style */
        .stories-section {
            margin-top: 30px;
            margin-bottom: 20px;
            padding: 15px 0;
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow-x: auto;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .stories-container {
            display: flex;
            gap: 15px;
            padding: 0 15px;
        }
        
        .story {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 70px;
            flex-shrink: 0;
            cursor: pointer;
        }
        
        .story-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            padding: 2px;
            background: var(--instagram-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
        }
        
        .story-avatar-inner {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .story-avatar-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .story-username {
            font-size: 0.7rem;
            text-align: center;
            max-width: 70px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        /* Feed Posts - Instagram Style */
        .feed {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .post {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .post:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
        }
        
        .post-user {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .post-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .post-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .post-username {
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
        }
        
        .post-username:hover {
            text-decoration: underline;
        }
        
        .post-options {
            font-size: 1.2rem;
            color: var(--text-dark);
            cursor: pointer;
        }
        
        .post-image {
            width: 100%;
            height: 500px;
            overflow: hidden;
        }
        
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .post-actions {
            display: flex;
            justify-content: space-between;
            padding: 12px 15px;
        }
        
        .post-actions-left {
            display: flex;
            gap: 15px;
        }
        
        .post-action {
            font-size: 1.5rem;
            color: var(--text-dark);
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .post-action:hover {
            color: var(--accent);
            transform: scale(1.2);
        }
        
        .post-action.liked {
            color: #ed4956;
        }
        
        .post-action.saved {
            color: var(--primary);
        }
        
        .post-likes {
            padding: 0 15px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .post-caption {
            padding: 0 15px;
            margin-bottom: 8px;
        }
        
        .post-caption .username {
            font-weight: 600;
            margin-right: 5px;
            text-decoration: none;
            color: var(--text-dark);
        }
        
        .post-caption .username:hover {
            text-decoration: underline;
        }
        
        .post-caption .hashtag {
            color: var(--primary);
            text-decoration: none;
        }
        
        .post-caption .hashtag:hover {
            text-decoration: underline;
        }
        
        .post-comments {
            padding: 0 15px;
            color: #8e8e8e;
            margin-bottom: 12px;
            cursor: pointer;
        }
        
        .post-comments:hover {
            color: var(--text);
        }
        
        .post-time {
            padding: 0 15px 15px;
            font-size: 0.8rem;
            color: #8e8e8e;
            text-transform: uppercase;
        }
        
        .post-add-comment {
            display: flex;
            border-top: 1px solid var(--border);
            padding: 15px;
        }
        
        .comment-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 0.9rem;
            background: transparent;
        }
        
        .post-button {
            color: var(--primary);
            font-weight: 600;
            background: none;
            border: none;
            cursor: pointer;
            opacity: 0.5;
        }
        
        .post-button.active {
            opacity: 1;
        }
        
        /* Highlights Section */
        .highlights-section {
            margin: 30px 0;
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .highlights-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        
        .highlights-container {
            display: flex;
            gap: 15px;
            overflow-x: auto;
        }
        
        .highlight {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 70px;
            flex-shrink: 0;
            cursor: pointer;
        }
        
        .highlight-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s;
        }
        
        .highlight:hover .highlight-circle {
            transform: scale(1.05);
        }
        
        .highlight-name {
            font-size: 0.8rem;
            text-align: center;
            max-width: 70px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        /* Profile Section */
        .profile-section {
            
            gap: 30px;
            margin: 30px 0;
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            flex-direction: column !important;
        }
        
        .profile-avatar {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .profile-info {
            flex: 1;
        }
        
        .profile-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .profile-username {
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--text-dark);
        }
        
        .profile-stats {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .profile-stat {
            text-align: center;
        }
        
        .stat-count {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .stat-name {
            font-size: 0.9rem;
            color: #8e8e8e;
        }
        
        .profile-bio {
            margin-bottom: 15px;
        }
        
        .profile-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        
        /* Modal for comments */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: white;
            border-radius: 16px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }
        
        .modal-title {
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
        }
        
        .comment-item {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
        }
        
        .comment-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .comment-content {
            flex: 1;
        }
        
        .comment-user {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .comment-text {
            margin-bottom: 5px;
        }
        
        .comment-actions {
            display: flex;
            gap: 15px;
            font-size: 0.8rem;
            color: #8e8e8e;
        }
        
        .comment-action {
            cursor: pointer;
        }
        
        .comment-action:hover {
            color: var(--text);
        }
        
        /* Video çerçevesi */
        .video-frame {
            width: 100%;
            height: 440px;
            position: relative;
            overflow: hidden;
            background: #000;
            border-radius: 16px;
        }

        /* Video */
        #promoVideo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* Video Container */
        #videoContainer {
            position: relative;
            width: calc(100% - 30px); /* ekranın tamamı yerine margin kadar azaltıldı */
            max-width: 960px;
            cursor: pointer;
            margin: 15px;
            border-radius: 16px;
            overflow: hidden;
            padding: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            background:linear-gradient(135deg, #e8c1b0 0%, #b97a65 50%, #2a1a1a 100%)
;



        }

        /* Cam Parıltısı */
        #videoContainer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
            pointer-events: none;
        }

        /* Noise / Grain (Premium Texture) */
        #videoContainer::after {
            content: "";
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDIiLz4KPC9zdmc+');
            opacity: 0.15;
            pointer-events: none;
        }

        #videoContainer img,
        #videoContainer video {
            width: 100%;
            display: block;
            border-radius: 12px;
        }
        
        #videoContainer video {
            width: 100%;
            display: none;
        }

        /* Video Player Box */
        #videoPlayerBox .video-container {
            background:linear-gradient(135deg, #e8c1b0 0%, #b97a65 50%, #2a1a1a 100%);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            max-width: 600px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            padding: 10px;
        }

        #videoPlayerBox .video-inner {
            position: relative;
            width: 100%;
            padding-top: 100%;
            overflow: hidden;
            border-radius: 12px;
        }

        #videoPlayerBox .video-inner video,
        #videoPlayerBox .video-inner .video-thumb {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        #videoPlayerBox .video-thumb {
            cursor: pointer;
            z-index: 5;
        }

#videoPlayerBox .links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 5px;
    font-size: 1rem;
    max-width: 600px;
    margin: 16px 0 0 0; /* margin left 0 */
    justify-content: flex-start; /* sola yasla */
}

        #videoPlayerBox .links a {
            flex: 0 0 calc(50% - 6px);
            box-sizing: border-box;
            padding: 14px 12px;
            border-radius: 12px;
            background: rgba(30, 41, 59, 0.7);
            color: #e2e8f0;
            border: 1px solid rgba(71, 85, 105, 0.5);
            text-align: center;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        #videoPlayerBox .links a:hover {
            background: rgba(30, 41, 59, 0.9);
            color: #ffffff;
            border-color: rgba(100, 116, 139, 0.7);
        }

        #videoPlayerBox .links a.active {
            background: linear-gradient(145deg, var(--accent), var(--accent-dark));
            color: #ffffff;
            border-color: var(--accent);
        }

        /* Video Preview */
        .video-preview {
            position: relative;
            width: 100%;
            height: 450px;
            background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(30, 58, 36, 0.9)), url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 16px;
            overflow: hidden;
        }

        .video-preview:hover {
            transform: scale(1.02);
        }

        .video-preview:hover .play-button {
            transform: scale(1.1);
            box-shadow: 0 0 0 15px rgba(230, 126, 34, 0.2);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(230, 126, 34, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
            }
        }

        .video-text {
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .video-text h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .video-text p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 500px;
        }

        .video-info h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .video-info p {
            margin-bottom: 15px;
            color: var(--text);
        }

        .features {
            display: grid;
             grid-template-columns: 1fr;
             margin-top: 15px;
            
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
        }

        .feature i {
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        
.features .feature {
    margin: -3px 0;     /* üst-alt boşluğu daraltır */
}

.features .feature span {
    line-height: 22px; /* metin yüksekliğini daraltır */
}

.features .feature i {
    margin-right: 6px; /* ikona bitişik görünmesin diye */
    font-size: 18px;
}        
        

        .badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Like Animation */
        .liked i {
            transform: scale(1.3);
            transition: transform 0.2s ease;
        }

        .like-count-pop {
            animation: popCount 0.3s ease;
        }

        @keyframes popCount {
            0% { transform: scale(1); }
            50% { transform: scale(1.4); }
            100% { transform: scale(1); }
        }

        /* Başlık Stilleri */
        .ingilizce-baslik {
            font-size: 1.4rem !important;
            color: var(--primary) !important;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            line-height: 1.3;
            font-weight: 600;
            margin-top:20px;
        }

        .ingilizce-baslik::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 2px;
        }

        .mavi-vurgu-kutusu {
            border-left: 5px solid var(--accent);
            padding: 30px;
            border-radius: 0 12px 12px 0;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
            background: linear-gradient(135deg, #fef9f3, #fdf6ec);
            position: relative;
            overflow: hidden;
        }

        .mavi-vurgu-kutusu::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .mavi-vurgu-kutusu p {
            color: var(--accent-dark);
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.5;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Modal Stilleri */
        #modaldemotaleb form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 16px;
            text-align: left;
        }

        #modaldemotaleb input {
            padding: 12px;
            font-size: 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            width: 100%;
            box-sizing: border-box;
            background: var(--light-gray);
        }

        #modaldemotaleb button[type=submit] {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        #modaldemotaleb button[type=submit]:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
        }

        #modaldemotaleb h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        #modaldemotaleb p {
            font-size: 16px;
            margin-bottom: 8px;
        }

        #modaldemotaleb .custom-close-btn {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            border: none;
            padding: 10px 16px;
            cursor: pointer;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 16px;
            transition: all 0.3s;
        }

        #modaldemotaleb .custom-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
        }

        /* Modal genel stil */
        .custom-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .custom-modal-contain {
            background-color: #fff;
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            padding: 25px;
            border-radius: 16px;
            width: 90%;
            max-width: 500px;
            text-align: center;
            box-sizing: border-box;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .custom-modal-contain h2 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .custom-modal-contain p {
            font-size: 16px;
            margin-bottom: 15px;
            color: #333;
        }

        /* Yorum formu */
        .post-add-comment {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }

        .post-add-comment input.comment-input {
            padding: 12px;
            font-size: 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            width: 100%;
            box-sizing: border-box;
            background: var(--light-gray);
        }

        .post-add-comment button.custom-close-paylas-btn {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            border: none;
            padding: 12px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .post-add-comment button.custom-close-paylas-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
        }

        /* Kapat butonu */
        .custom-close-btn {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            border: none;
            padding: 10px 16px;
            cursor: pointer;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .custom-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
        }
        
        


        /* Paylaş Menüsü */
        .share-menu {
            display: none;
            position: absolute;
            background: white;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 16px;
            z-index: 9999999;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .share-menu a {
            display: block;
            padding: 7px 0;
            color: var(--text);
            text-decoration: none;
            transition: all 0.2s;
        }

        .share-menu a:hover {
            font-weight: bold;
            color: var(--accent);
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                margin-top:5px;
            }
            
            nav ul {
                margin-top:7px;
                margin-bottom:5px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 0.5rem;
                font-size:1rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .container {
                padding: 0 10px;
            }
            
            .profile-section {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .profile-header {
                flex-direction: column;
                gap: 10px;
            }
            
            .post-image {
                height: 400px;
            }
            
            .ingilizce-baslik {
                font-size: 1.3rem !important;
                line-height:35px;
            }
            
            .mavi-vurgu-kutusu p {
                font-size: 1.1rem;
            }
            
            .mavi-vurgu-kutusu h2 {
                font-size: 1.2rem;

            }
            
            .mavi-vurgu-kutusu {
                padding: 20px;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .video-preview {
                height: 350px;
            }
            
            .video-text h2 {
                font-size: 1.6rem;
            }
            
            .video-text p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .post-image {
                height: 300px;
            }
            
            .profile-avatar {
                width: 200px;
                height: 200px;
                margin:auto;
                display:block;
            }
            
            .profile-username {
                font-size: 1.5rem;
            }
        }
        
        
            .solhiza {
               padding-left:25px;
            }
        
        /* Premium Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 58, 39, 0.85), rgba(15, 38, 24, 0.9)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .hero h1 {
            font-size: 1.95rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            line-height: 1.3;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            font-weight: 400;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #d4af37 0%, #f9e076 100%);
            color: #0f2618;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: all 0.3s;
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }
        
        .cta-button:hover::before {
            width: 100%;
        }
        
               .logo {
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.5px;
        }
        
        .logo span {
            background:  linear-gradient(135deg, #d4af37 0%, #f9e076 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
.resimgenislik {
    width: 50%; /* Mobil için varsayılan */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Mobilde ortala */
}

@media (min-width: 768px) {
    .resimgenislik {
        width: 30%; /* Masaüstü */
        margin: 0; /* → Sola yaslar */
    }
}


@media (max-width: 768px) {
    .cepsil {
    display:none;
    }
}


/* Masaüstü için sola yaslama */
@media (min-width: 768px) {
    header nav ul {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    header nav ul li {
        margin-left: 0;   /* soldan boşluk olmasın */
        margin-right: 20px; /* istersen aralık bırak */
    }
}

/* Mobil tasarımı masaüstünde birebir aynı göstermek için */
#mobileWrapper {
    width: 700px;            /* Mobil ekran genişliği */
    margin: 0 auto;          /* Masaüstünde ortalar */
    background: #fff;        /* İstersen değişir */
    box-sizing: border-box;
    min-height: 100vh; 
}

/* Mobilde zaten responsive ise sorun yok */
@media (max-width: 480px) {
    #mobileWrapper {
        width: 100%;          /* Mobilde tam genişlik */
    }
}
     
     
     

     
.slider-kapsayici {
    background-color: #F1F1F1;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px 20px;
    overflow: hidden;
    position: relative;
    font-size: 17px;
    line-height:25px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
}

.slider-icerik {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease-in-out;
}

.slider-oge {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 45px 20px 20px;
    color: var(--text);
    font-size:1rem;
}

.slider-oge img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-top: 15px;
}

.slider-yazi {
    margin-top: 15px;
    font-weight: normal;
}

.slider-kontrol {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
}

.slider-kontrol button {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    color: var(--text);
}

.slider-kontrol button:hover {
    color: #333;
}
     
/* share button */

.share-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  z-index: 9999999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.share-menu a {
  display: block;
  padding: 7px 0;
  color: black;
  text-decoration: none;
}
.share-menu a:hover {
  font-weight: bold;
}

     
     
footer {
    background: radial-gradient(circle at top left, #006644, #004d33 70%, #002e1f 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 28px;
    position: relative;
    overflow: hidden;
}

.footer-title {
    font-size: xx-large;
    margin-top: 20px;
    font-weight: 700;
}

.footer-hr {
    margin-top: 20px!important;
    border: 3px solid #00ffaa;
    width: 140px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
background: linear-gradient(135deg, #d4af37 0%, #f9e076 100%);

    color: black;
    padding: 12px 28px;
    font-size: 18px;
    display: inline-block;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease;
}


#emailLink {
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37 0%, #f9e076 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}



footer img {
    margin: 20px 0;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.directions-link {
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(135deg, #d4af37 0%, #f9e076 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}



.social-links a {
    margin: 0 10px;
    font-size: 2em; /* ikon boyutu */
    background: linear-gradient(135deg, #d4af37 0%, #f9e076 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    #harita img {
        width: 70%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 767px) {
    #harita img {
        width: 100%;
    }
}
     
     
    .erhan-video-container {
        position: relative;
        width: calc(100% - 30px);
        max-width: 1000px;
        height: 600px;
        cursor: pointer;
        margin: 18px auto;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 10px;
        background: linear-gradient(135deg, #e8c1b0 0%, #b97a65 50%, #2a1a1a 100%)
    }
    
    .erhan-video-player {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .erhan-video-frame {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .erhan-video-item {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #111;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .erhan-video-item.active {
        opacity: 1;
    }
    
    .erhan-video-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .erhan-video-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        z-index: 2;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .erhan-video-info-top {
        position: absolute;
        top: 35px;
        left: 15px;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px 20px;
        border-radius: 12px;
        z-index: 3;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        max-width: 300px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        color: white;
    }
    
    .erhan-video-info-top:hover {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .erhan-video-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
        color: white;
    }
    
    .erhan-video-description {
        font-size: 14px;
        opacity: 0.9;
        color: white;
    }
    
    .erhan-video-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }
    
    .erhan-control-btn {
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(5px);
    }
    
    .erhan-control-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }
    
    .erhan-volume-control {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .erhan-volume-slider {
        width: 100px;
        -webkit-appearance: none;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        outline: none;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .erhan-volume-slider:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .erhan-volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: white;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .erhan-volume-slider::-webkit-slider-thumb:hover {
        background: #e8c1b0;
        transform: scale(1.1);
    }
    
    .erhan-volume-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: white;
        cursor: pointer;
        border: none;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .erhan-volume-slider::-moz-range-thumb:hover {
        background: #e8c1b0;
        transform: scale(1.1);
    }
    
    .erhan-progress-container {
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        height: 4px;
        z-index: 3;
        overflow: hidden;
        background: transparent;
    }
    
    .erhan-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, var(--accent-color), #ff9d7c);
        width: 0%;
        border-radius: 2px;
        transition: width 0.1s linear;
        position: relative;
        box-shadow: 0 0 10px rgba(232, 193, 176, 0.5);
    }
    
    .erhan-progress-bar::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        transform: translate(50%, -25%);
        opacity: 0;
        transition: opacity 0.2s;
    }
    
    .erhan-video-container:hover .erhan-progress-bar::after {
        opacity: 1;
    }
    
    .erhan-video-counter {
        position: absolute;
        top: 25px;
        right: 25px;
        background: rgba(0, 0, 0, 0.7);
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 3;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .erhan-swipe-indicator {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.8);
        padding: 15px 25px;
        border-radius: 30px;
        font-size: 16px;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 10;
        pointer-events: none;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .erhan-swipe-indicator.show {
        opacity: 1;
    }
    
    .erhan-loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 16px;
        z-index: 1;
    }
    
    #erhanVideoPlayer {
        touch-action: none;
    }
    
    .erhan-swipe-guide {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        opacity: 0.7;
    }
    
    .erhan-swipe-guide.hidden {
        opacity: 0;
        visibility: hidden;
    }
    
    .erhan-swipe-icon {
        width: 40px;
        height: 40px;
        animation: erhanSwipeUpDown 2s infinite;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        padding: 8px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    @keyframes erhanSwipeUpDown {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(10px); }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .erhan-video-container {
            height: 500px;
        }
        
        .erhan-video-info-top {
            max-width: 250px;
            padding: 12px 16px;
        }
        
        .erhan-video-overlay {
            padding: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .erhan-video-container {
            height: 400px;
        }
        
        .erhan-video-info-top {
            max-width: 300px;
            padding: 10px 14px;
        }
        
        .erhan-video-title {
            font-size: 16px;
        }
        
        .erhan-video-description {
            font-size: 12px;
        }
        
        .erhan-control-btn {
            width: 40px;
            height: 40px;
        }
        
        .erhan-volume-slider {
            width: 70px;
        }
        
        .erhan-swipe-icon {
            width: 48px;
            height: 48px;
        }
    }
