        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            min-height: 100vh;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        /* Header ve Logo */
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            color: white;
            text-decoration: none;
            font-size: 28px;
            font-weight: bold;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: white;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Basit Navigasyon Menü */
        nav {
            padding: 15px 20px;
            text-align: center;
        }

        .nav-menu {
            list-style: none;
            display: inline-block;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            display: inline-block;
            margin: 5px 15px;
        }

        .nav-menu a {
            color: #808080;
            text-decoration: none;
            padding: 8px 15px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 14px;
        }

        .nav-menu a:hover {
            color: #3498db;
            transform: translateY(-2px);
        }

        /* Ana İçerik */
        main {
            padding: 40px 20px;
            min-height: calc(100vh - 200px);
        }

        .content-section {
            max-width: 800px;
            margin: 0 auto;
        }

        h1 {
            color: #2c3e50;
            font-size: 2.5em;
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            color: #34495e;
            font-size: 1.8em;
            margin: 30px 0 15px 0;
            padding-bottom: 10px;
            border-bottom: 3px solid #3498db;
            display: inline-block;
        }

        p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
            text-align: justify;
        }

        .feature-image {
            width: 100%;
            max-width: 600px;
            height: 340px;
            border-radius: 15px;
            margin: 30px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

		.feature-image img {
			max-width: 100%;
			max-height: 100%;
			object-fit: cover; /* Görseli kırpmadan sığdırır */
			border-radius: 15px; /* İstenirse köşelere uyum sağlar */
		}
		
        .feature-image:hover {
            transform: translateY(-5px);
        }

        /* Liste Stilleri */
        ul {
            margin: 20px 0;
            padding-left: 0;
        }

        ul li {
            background: #f8f9fa;
            margin: 10px 0;
            padding: 15px 20px;
            border-left: 4px solid #3498db;
            border-radius: 5px;
            list-style: none;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        ul li:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }

        .content-section ul li:before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            font-size: 18px;
            margin-right: 10px;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            margin: 20px auto;
            display: block;
            width: fit-content;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
        }

        /* Footer */
		footer {
			background: #2c3e50;
			color: white;
			display: flex;
			align-items: center;     /* Dikey ortalama */
			justify-content: center; /* Yatay ortalama */
			padding: 30px 20px;
			margin-top: 40px;
			text-align: center;
		}

		footer p {
			text-align: center;
		}
		
        .footer-content {
            margin: 0 auto;
        }

        .footer-content h3 {
            margin-bottom: 10px;
            color: #3498db;
        }

        /* Uyarı Mesajı Stili */
        .warning {
            background-color: #fff3cd;
            border: 2px solid #ffc107;
            border-radius: 8px;
            color: #856404;
            padding: 15px 20px;
            margin: 20px 0;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
        }
		
        /* Kazanç Özeti */
        .profit-summary {
            text-align: center;
            margin: 40px 0 30px 0;
            padding: 20px;
            background: linear-gradient(135deg, #e8f5e8, #f0fff0);
            border-radius: 15px;
            border: 2px solid #27ae60;
        }

        .profit-summary h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .profit-amount {
            font-size: 48px;
            font-weight: bold;
            color: #27ae60;
            text-shadow: 1px 1px 3px rgba(39, 174, 96, 0.3);
        }

        /* Tablo Stilleri */
        .trading-table {
            margin: 30px 0;
            overflow-x: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .trading-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
        }

        .trading-table thead {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }

        .trading-table th {
            color: white;
            font-weight: 600;
            padding: 15px 12px;
            text-align: left;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .trading-table td {
            padding: 12px;
            border-bottom: 1px solid #ecf0f1;
            color: #2c3e50;
            font-size: 14px;
        }

        .trading-table tbody tr:hover {
            background-color: #f8f9fa;
            transform: translateX(2px);
            transition: all 0.3s ease;
        }

        .trading-table tbody tr:last-child td {
            border-bottom: none;
        }

        .profit {
            color: #27ae60;
            font-weight: bold;
        }

        .loss {
            color: #e74c3c;
            font-weight: bold;
        }
		
        /* Mobil Uyumluluk */
        @media (max-width: 768px) {
            .logo {
                font-size: 24px;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .nav-menu li {
                margin: 5px 10px;
            }

            .nav-menu a {
                padding: 6px 12px;
                font-size: 13px;
            }

            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.5em;
            }

            main {
                padding: 20px 15px;
            }

            .feature-image {
                height: 200px;
                font-size: 16px;
                margin: 20px auto;
            }

            ul li {
                padding: 12px 15px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
                gap: 10px;
            }

            .nav-menu li {
                margin: 3px 5px;
            }

            .nav-menu a {
                padding: 5px 10px;
                font-size: 12px;
            }

            h1 {
                font-size: 1.8em;
            }

            .cta-button {
                padding: 12px 25px;
            }
			
            .cta-button {
                padding: 12px 25px;
            }

            .profit-amount {
                font-size: 36px;
            }

            .trading-table {
                font-size: 12px;
            }

            .trading-table th,
            .trading-table td {
                padding: 8px 6px;
                font-size: 12px;
            }			
        }