* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #8b5cf6;
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --bg-primary: #0a0e27;
    --bg-secondary: #1a1f3a;
    --bg-tertiary: #1a0933;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --border-color: rgba(0, 212, 255, 0.3);
    --card-bg: rgba(255, 255, 255, 0.05);
    --hover-bg: rgba(255, 255, 255, 0.08);
    --success-color: #48bb78;
    --error-color: #f56565;
}

/* Light and Meme themes removed - Dark theme only */

body {
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #050814 50%, #1a0933 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.planets {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.planet {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.6;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.6) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(0, 212, 255, 0.2) 100%);
    animation: planetFloat 20s ease-in-out infinite, planetRotate 30s linear infinite;
}

@keyframes planetFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-15px, -20px) scale(0.95); }
    75% { transform: translate(10px, 15px) scale(1.02); }
}

@keyframes planetRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.meteor {
    position: fixed;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.8) 0%, rgba(139, 92, 246, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(139, 92, 246, 0.6);
    animation: meteorFall 1s linear;
}

@keyframes meteorFall {
    0% {
        opacity: 1;
        transform: translateY(-100px) translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) translateX(200px);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo svg {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.main-title {
    font-size: 36px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.header-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.theme-selector, .form-select, .custom-select {
    padding: 12px 40px 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    min-height: 44px;
    width: 100%;
}

.theme-selector:hover, .form-select:hover, .custom-select:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background-color: var(--hover-bg);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.theme-selector:focus, .form-select:focus, .custom-select:focus {
    border-color: rgba(0, 212, 255, 0.8);
    background-color: var(--hover-bg);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.theme-selector option, .form-select option, .custom-select option {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 10px;
}

.custom-select {
    position: relative;
}

.icon-btn {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: var(--hover-bg);
    transform: translateY(-2px);
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px 10px 0 0;
    background: transparent;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--hover-bg);
}

.tab-btn.active {
    color: var(--text-primary);
    background: var(--card-bg);
    border-bottom: 3px solid;
    border-image: var(--primary-gradient) 1;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.content-wrapper.full-width {
    grid-template-columns: 1fr;
}

.payload-list-container {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.payload-list-container h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text-primary);
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--hover-bg);
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.payload-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payload-item {
    padding: 12px 15px;
    background: var(--hover-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.payload-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.payload-info {
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.payload-item:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(5px);
}

.payload-item.active {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.8);
    font-weight: 600;
}

.command-container {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.reverse-command-container {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.reverse-shell-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
}

.reverse-shell-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: var(--text-secondary);
    font-size: 16px;
}

.payload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payload-count {
    font-size: 12px;
    color: var(--text-secondary);
    background: rgba(0, 212, 255, 0.2);
    padding: 4px 10px;
    border-radius: 10px;
}

.form-section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.label-icon {
    margin-right: 5px;
    font-size: 16px;
}

.checkbox-group {
    grid-column: 1 / -1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    background: var(--hover-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(0, 212, 255, 0.2);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.reverse-preview {
    margin-top: 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.4);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-icon {
    font-size: 18px;
}

.command-box[contenteditable="true"]:empty:before {
    content: attr(placeholder);
    color: #666;
    opacity: 0.5;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.input-with-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--hover-bg);
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Courier New', monospace;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.small-btn {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.small-btn:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: var(--hover-bg);
    transform: translateY(-2px);
}

.command-preview {
    margin-top: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    gap: 10px;
}

.preview-header span {
    font-weight: 600;
    font-size: 16px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.copy-btn {
    padding: 8px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: var(--hover-bg);
    transform: translateY(-2px);
}

.command-box {
    padding: 15px;
    background: #0f0f15;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00ff00;
    min-height: 100px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    resize: none;
}

.command-box:focus {
    outline: 2px solid rgba(0, 212, 255, 0.6);
    outline-offset: 2px;
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background: var(--primary-gradient);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.action-btn.danger {
    background: linear-gradient(135deg, #f56565 0%, #c53030 100%);
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.share-section {
    margin-top: 20px;
}

.share-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: var(--hover-bg);
}

.share-link {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--hover-bg);
    color: var(--text-primary);
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.info-box {
    margin-top: 20px;
    padding: 20px;
    background: var(--hover-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
}

.info-box h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-box p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.download-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--primary-gradient);
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-color: var(--success-color);
    background: rgba(72, 187, 120, 0.2);
    color: var(--success-color);
}

.toast.error {
    border-color: var(--error-color);
    background: rgba(245, 101, 101, 0.2);
    color: var(--error-color);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--text-primary);
    transform: scale(1.2);
}

.scan-results {
    margin-top: 20px;
    padding: 15px;
    background: var(--hover-bg);
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.scan-result-item {
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.scan-result-item.open {
    background: rgba(72, 187, 120, 0.2);
    color: var(--success-color);
}

.scan-result-item.closed {
    background: rgba(245, 101, 101, 0.2);
    color: var(--error-color);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .payload-list-container {
        max-height: 300px;
        margin-bottom: 20px;
    }
    
    .command-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 15px;
        border-radius: 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo svg {
        width: 120px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .header-controls {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .theme-selector, .icon-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .tab-btn {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payload-list-container {
        max-height: 250px;
    }
    
    .input-group {
        margin-bottom: 15px;
    }
    
    .input-group label {
        font-size: 13px;
    }
    
    .form-input, .form-textarea, .form-select, .custom-select {
        font-size: 13px;
        padding: 10px 12px;
        min-height: 40px;
    }
    
    .command-box {
        font-size: 12px;
        padding: 12px;
        min-height: 80px;
        max-height: 250px;
        overflow-x: hidden;
        overflow-y: auto;
        word-wrap: break-word;
        word-break: break-all;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        padding: 12px;
        font-size: 13px;
    }
    
    .copy-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        font-size: 12px;
        padding: 12px 20px;
    }
    
    .modal-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .share-link {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }
    
    .container {
        padding: 10px;
    }
    
    .main-title {
        font-size: 20px;
    }
    
    .logo svg {
        width: 100px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .payload-list-container h3 {
        font-size: 16px;
    }
    
    .payload-item {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .form-input, .form-textarea, .form-select, .custom-select {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .command-box {
        font-size: 11px;
        padding: 10px;
        max-height: 200px;
        overflow-x: hidden;
        overflow-y: auto;
        word-wrap: break-word;
        word-break: break-all;
    }
    
    .preview-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    .input-with-btn {
        flex-direction: column;
    }
    
    .small-btn {
        width: 100%;
        margin-top: 5px;
    }
    
    .button-group {
        gap: 8px;
    }
    
    .action-btn {
        padding: 10px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .main-title {
        font-size: 18px;
    }
    
    .tab-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .form-input, .form-textarea, .form-select, .custom-select {
        font-size: 11px;
    }
    
    .command-box {
        font-size: 10px;
        max-height: 180px;
        overflow-x: hidden;
        overflow-y: auto;
        word-wrap: break-word;
        word-break: break-all;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .payload-list-container {
        max-height: 150px;
    }
    
    .command-box {
        max-height: 200px;
        overflow-x: hidden;
        overflow-y: auto;
        word-wrap: break-word;
        word-break: break-all;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--hover-bg);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.main-wrapper-reverse {
    padding-top: 100px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer-custom {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 100;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #0a0e27;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE - NAVBAR & FOOTER
   ============================================ */
@media (max-width: 768px) {
    .navbar-custom {
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .main-wrapper-reverse {
        padding-top: 90px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


