    
        :root {
            --primary: #27b399;
            --secondary: #8A2BE2;
            --dark: #0f2027;
            --light: #ffffff;
            --amazon: #FF9900;
            --yellow: #FFD700;
            --facebook-blue: #3b5998;
            --twitter-blue: #1da1f2;
            --pinterest-red: #e60023;
            --link-gray: #6c757d;
            
            --bg-primary: #090f21;
            --bg-secondary: #1a2a32;
            --text-primary: #ffffff;  /* fff for dark mode */
            --text-secondary: rgba(255,255,255,0.8);
            --text-muted: rgba(255,255,255,0.6);
            --card-bg: rgba(255,255,255,0.05);
            --border-color: rgba(255,255,255,0.1);
            --shadow-color: rgba(0,0,0,0.3);
        }

        [data-theme="light"] {
            --bg-primary: #f5f5f5;
            --bg-secondary: #e0e0e0;
            --text-primary: #000000;  /* 000 for light mode */
            --text-secondary: rgba(0,0,0,0.8);
            --text-muted: rgba(0,0,0,0.6);
            --card-bg: rgba(0,0,0,0.03);
            --border-color: rgba(0,0,0,0.1);
            --shadow-color: rgba(0,0,0,0.1);
        }
        
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            color: var(--text-primary);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
            transition: background 0.3s ease, color 0.3s ease;
        }
        
        .video-header {
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 32, 39, 0.7);
            z-index: 2;
        }
        
        .header-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding: 0 20px;
            overflow: visible;
        }
        
        .header-content h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: fadeInDown 1s ease;
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .header-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
            color: #fff;
        }
        
        .hashtags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .hashtag {
            background: rgba(37, 211, 102, 0.1);
            color: var(--primary);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .logo-chain-container {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
            animation: fadeIn 1s ease 0.6s forwards;
            opacity: 0;
        }
        
        .static-chain {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .chain-link {
            width: 20px;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,20 C30,20 20,30 20,50 C20,70 30,80 50,80 C70,80 80,70 80,50 C80,30 70,20 50,20 Z" fill="%238A2BE2" stroke="%2325D366" stroke-width="3"/></svg>') no-repeat center center;
            background-size: contain;
            margin-bottom: 2px;
            animation: swim-up 2s infinite alternate;
        }
        
        .chain-link:nth-child(1) { animation-delay: 0s; }
        .chain-link:nth-child(2) { animation-delay: 0.3s; }
        .chain-link:nth-child(3) { animation-delay: 0.6s; }
        
        .static-tv-icon {
            color: var(--primary);
            font-size: 1.8rem;
            margin-top: 2px;
            transition: all 0.3s ease;
        }
        
        .static-tv-icon:hover {
            color: #27b399;
            transform: scale(1.2);
            filter: drop-shadow(0 0 6px rgba(138, 43, 226, 0.7));
        }
        
        .guide-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
            position: relative;
        }
        
        .search-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto 30px;
            z-index: 1;
        }
        
        .search-container input {
            width: 90%;
            padding: 12px 20px;
            padding-right: 50px;
            border-radius: 30px;
            border: none;
            background: rgba(255,255,255,0.1);
            color: var(--text-primary);
            font-size: 1rem;
            outline: none;
            transition: all 0.3s;
            border: 1px solid var(--border-color);
        }
        
        .search-container input:focus {
            background: rgba(255,255,255,0.2);
            box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
        }
        
        .search-container button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: var(--primary);
            cursor: pointer;
            font-size: 1.2rem;
        }
        
        .button-row {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .action-btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            text-align: center;
            color: white;
        }
        
        .premium-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary));
        }
        
        .reseller-btn {
            background: linear-gradient(135deg, #27b399, #27b399);
        }
        
        .xtream-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary));
        }
        
        .m3u-btn {
            background: linear-gradient(135deg, #27b399, #27b399);
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--shadow-color);
        }
        
        .tutorials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .tutorial-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0px 4px 0px 0px var(--primary);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 0;
        }
        
        .tutorial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 0px 0px var(--primary);  
        }
        
        .tutorial-img-container {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
        }
        
        .tutorial-img {
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .tutorial-card:hover .tutorial-img {
            transform: scale(1.05);
        }
        
        .share-icons {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            gap: 10px;
            z-index: 5;
        }
        
        .share-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            opacity: 0;
            transform: scale(0.5) translateX(-20px);
        }
        
        .share-icon.link {
            z-index: 2;
        }
        
        .tutorial-card:hover .share-icon {
            opacity: 1;
            transform: scale(1) translateX(0);
        }
        
        .share-icon:hover {
            transform: scale(1.1) translateY(-3px) !important;
        }
        
        .share-icon.facebook { background: var(--facebook-blue); }
        .share-icon.twitter { background: var(--twitter-blue); }
        .share-icon.pinterest { background: var(--pinterest-red); }
        .share-icon.link { background: var(--link-gray); opacity: 1; transform: scale(1); }
        
        .tutorial-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .tutorial-content h3 {
            margin-top: 0;
            margin-bottom: 15px;
            color: var(--primary);
            font-size: 1.3rem;
        }
        
        .tutorial-content p {
            margin-bottom: 20px;
            color: var(--text-secondary);
            flex: 1;
        }
        
        .read-guide {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #27b399;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            margin-top: auto;
            padding: 8px 15px;
            border-radius: 20px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .read-guide:hover {
            background: rgba(255, 215, 0, 0.2);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0 20px;
            gap: 10px;
        }
        
        .page-btn {
            padding: 8px 16px;
            background: var(--card-bg);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .page-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .page-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .page-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        footer {
            background: rgba(0,0,0,0.2);
            padding: 40px 20px;
            text-align: center;
            margin-top: 50px;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--yellow);
            text-decoration: underline;
        }
        
        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }
        
        .telegram-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 100;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px var(--shadow-color);
            transition: all 0.3s;
            color: white;
            text-decoration: none;
        }
        
        .whatsapp-btn {
            background: #25D366;
        }
        
        .telegram-btn {
            background: #0088cc;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 2px 10px var(--shadow-color);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--secondary);
        }
        
        .help-section {
            text-align: center;
            margin-top: 60px;
            padding: 60px 20px;
            background: var(--card-bg);
            border-radius: 15px;
            border: 1px dashed var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .help-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .support-email {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--primary), var(--primary));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
        }

        .support-email:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--shadow-color);
        }

        .supported-platforms {
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }

        .responsive-platform-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0px 15px 0px 0px var(--primary);
            transition: transform 0.3s ease;
        }

        .responsive-platform-img:hover {
            transform: scale(1.02);
        }

        .header-container {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

        .device-icons {
            display: inline-flex;
            align-items: center;
            margin-left: 15px;
            vertical-align: middle;
        }

        .device-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease;
            will-change: transform;
        }

        .device-icon i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .device-icon:nth-child(1) i {
            color: #a2aaad; /* Apple gray */
        }

        .device-icon:nth-child(2) i {
            color: #3ddc84; /* Android green */
        }

        .device-icon:nth-child(3) i {
            color: #25D366; /* Your primary color */
        }

        .device-icon:nth-child(4) i {
            color: #0078d7; /* Windows blue */
        }

        .device-icon:hover {
            transform: translateY(-5px);
        }

        .device-icon:hover i {
            transform: scale(1.2);
        }

        .device-icon::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .device-icon:hover::after {
            transform: translateX(-50%) scale(1);
            opacity: 1;
        }

        .sub-heading {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

        .sub-heading::before,
        .sub-heading::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary));
        }

        .sub-heading::before {
            left: -40px;
        }

        .sub-heading::after {
            right: -40px;
            background: linear-gradient(90deg, var(--primary), transparent);
        }

        .keywords-section {
            text-align: center;
            margin: 30px 0;
            padding: 15px;
            background: var(--card-bg);
            border-radius: 10px;
        }
        
        .keywords-section p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.6;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes swim-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .device-icon:nth-child(1) { animation: float 3s ease-in-out infinite; }
        .device-icon:nth-child(2) { animation: float 3s ease-in-out infinite 0.5s; }
        .device-icon:nth-child(3) { animation: float 3s ease-in-out infinite 1s; }
        .device-icon:nth-child(4) { animation: float 3s ease-in-out infinite 1.5s; }

        #themeToggle {
            position: fixed;
            bottom: 100px;
            left: 20px;
            z-index: 999;
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 10px var(--shadow-color);
            transition: all 0.3s ease;
        }
        
        #themeToggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--shadow-color);
        }

        @media (max-width: 768px) {
            .video-header {
                height: 60vh;
            }
            
            .header-content h1 {
                font-size: 2.2rem;
            }
            
            .header-content p {
                font-size: 1rem;
            }
            
            .tutorials-grid {
                grid-template-columns: 1fr;
            }
            
            .button-row {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .telegram-float {
                bottom: 170px;
            }

            .search-container {
                width: 90%;
                max-width: none;
                margin: 0 auto 20px;
            }
            
            .search-container input {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .search-container button {
                right: 8px;
                font-size: 1rem;
            }

            .main-heading {
                font-size: 2rem;
            }
            
            .device-icon {
                width: 30px;
                height: 30px;
                margin: 0 3px;
            }
            
            .device-icon i {
                font-size: 1.2rem;
            }
            
            .sub-heading {
                font-size: 1rem;
            }
            
            .sub-heading::before,
            .sub-heading::after {
                width: 20px;
                top: 60%;
            }
            
            .sub-heading::before {
                left: -25px;
            }
            
            .sub-heading::after {
                right: -25px;
            }
            
            #themeToggle {
                bottom: 80px;
                left: 10px;
                padding: 8px 12px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .help-section {
                padding: 30px 10px;
            }
            
            .help-section h3 {
                font-size: 1.2rem;
            }
            
            .help-section p {
                font-size: 0.9rem;
            }

            .search-container {
                width: 95%;
            }
            
            .search-container input {
                padding: 8px 12px;
            }

            .guide-container {
                padding: 20px 10px;
            }
            
            .tutorial-card {
                margin-bottom: 15px;
            }
            
            .tutorial-content h3 {
                font-size: 1.1rem;
            }
            
            .tutorial-content p {
                font-size: 0.9rem;
            }
            
            .action-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }

            .device-icons {
                margin-top: 10px;
                margin-left: 0;
            }
            .device-icon {
                margin: 0 8px;
            }
            
            .keywords-section p {
                font-size: 0.8rem;
            }
        }
        /* FAQ Section Styles */
        .faq-section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            margin: 60px 0;
            border: 1px solid var(--border-color);
        }
        
        .faq-section h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 2rem;
        }
        
        .faq-subheading {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--primary);
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(39, 179, 153, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--primary);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
        }
        
        .faq-answer ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .faq-section {
                padding: 30px 20px;
            }
            
            .faq-section h2 {
                font-size: 1.5rem;
            }
            
            .faq-subheading {
                font-size: 1rem;
            }
            
            .faq-question {
                padding: 15px;
            }
            
            .faq-question h3 {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .faq-section {
                padding: 20px 15px;
            }
            
            .faq-question {
                padding: 12px;
            }
            
            .faq-item.active .faq-answer {
                padding: 15px;
            }
        }
/* Supported Devices Section */
.supported-devices-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 20px;
    margin: 40px 0;
    border: 1px solid var(--border-color);
}

.support-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-align: center;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.support-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;

}

.channels-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.channel-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.channel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
    border-color: var(--primary);
}

.channel-logo {
    max-width: 63px;
    height: auto;
    max-height: 30px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.channel-item:hover .channel-logo {
    filter: grayscale(0%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .support-title {
        font-size: 1.8rem;
    }
    
    .channels-container {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: 1.5rem;
    }
    
    .support-subtitle {
        font-size: 1rem;
    }
    
    .channels-container {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .channel-item {
        padding: 10px;
    }
}
/* Labels */
.flylinks-label {
  display: inline-block;
background: linear-gradient(45deg, #27b399, #0f0)
  color: var(--flylinks-light);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 10px;
  transform: rotate(-5deg);
  animation: flylinks-diagonal-float 2.5s infinite alternate ease-in-out;
box-shadow: 0px 0px 0px 4px rgb(253 253 253 / 30%);
}

@keyframes flylinks-diagonal-float {
  from { transform: rotate(-5deg) translate(-5px, -5px); }
  to { transform: rotate(-5deg) translate(5px, 5px); }
}
    
