 @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --main-color: #BA68C8;
            --main-accent-color: #8E24AA
            --back-color1:#1A1A1A
        }
        
        body {
            background-color: #121212;
            color: #ffffff;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            padding: 30px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
            border-bottom: 1px solid #1e1e1e;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
		
		.logo-link {
		  text-decoration: none;
		  color: inherit;
		  display: inline-block; /* or block, depending on layout */
		}
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--main-color);
        }
        
        /* Guide Content */
        .guide-content {
            padding: 80px 0;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .guide-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .guide-title {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #e0e0e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .guide-subtitle {
            font-size: 1.3rem;
            color: #b0b0b0;
        }
        
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, var(--main-color), transparent);
            margin: 40px 0;
        }
        
        .toc {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 50px;
            border: 1px solid #2a2a2a;
        }
        
        .toc-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .toc-list {
            list-style: none;
            padding-left: 0;
        }
        
        .toc-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .toc-list li:before {
            content: "•";
            color: var(--main-color);
            position: absolute;
            left: 0;
        }
        
        .toc-list a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .toc-list a:hover {
            color: var(--main-color);
        }
        
        .section {
            margin-bottom: 10px; /*promenio sa 80*/
        }
        
        .section-title {
            font-size: 2.2rem;
            /*margin-bottom: 30px; */
			margin-top: 15px; /*promenio sa 0*/
            color: #ffffff;
            /*border-bottom: 2px solid var(--main-color);*/
            padding-bottom: 10px;
        }
        
        .topic {
            margin-bottom: 10px; /*50*/
            /*background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #2a2a2a;*/
        }
        
        .topic-title {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #ffffff;
        }
		
		.topic img {
		  max-width: 100%;
		  height: auto;
		  display: block;
		  margin: 0 auto;
		}
        
        .screenshot {
            width: 100%;
            max-width: 400px;
            border-radius: 10px;
            margin: 20px 0;
            border: 1px solid #2a2a2a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .screenshot-caption {
            color: #b0b0b0;
            font-style: italic;
            margin-bottom: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .content-text {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .content-text ul, .content-text ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .content-text li {
            margin-bottom: 10px;
        }
        
        .content-text a {
            /*color: var(--main-color);*/
            color: #b0b0b0;
        }
        
        .content-text a:hover {
            color: var(--main-accent-color);
        }

        .content-text img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }
        
        .highlight {
            background: rgba(206, 147, 216, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--main-color);
            margin: 20px 0;
        }
        
        .faq-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #2a2a2a;
        }
        
        .faq-question {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .back-to-top {
            display: inline-block;
            /*background: var(--main-color);
            color: #121212;*/
            color: var(--main-color);
            padding: 5px 10px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 10px;
            transition: all 0.3s ease;
        }
        
        .back-to-top:hover {
            transform: translateY(-2px);
            background: #1e1e1e;
        }
        
        /* Footer */
        footer {
            background: #0a0a0a;
            padding: 50px 0 30px;
            border-top: 1px solid #1e1e1e;
            margin-top: 80px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .footer-logo-svg {
            width: 40px;
            height: 40px;
        }
        
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }
        
        .footer-description {
            color: #b0b0b0;
            line-height: 1.6;
            max-width: 400px;
            text-align: left;
        }
        
        .footer-links h4 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
        }
        
        .footer-links a {
            display: block;
            color: #b0b0b0;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s ease;
            text-align: left;
        }
        
        .footer-links a:hover {
            color: var(--main-color);
        }
        
        .copyright {
            text-align: center;
            color: #666;
            padding-top: 30px;
            border-top: 1px solid #1e1e1e;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .nav-links {
                gap: 20px;
            }
            
            .guide-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-logo {
                justify-content: center;
            }
            
            .footer-description {
                text-align: center;
                margin: 0 auto;
            }
            
            .footer-links h4 {
                text-align: center;
            }
            
            .footer-links a {
                text-align: center;
            }
        }
