/* Minimal CSS - Only Used Classes */
:root {
    --primary-blue: #60a5fa;
    --primary-dark: #3b82f6;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #334155;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --border-color: rgba(99, 102, 241, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 2rem;
    padding-top: 150px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Navbar */
.main-navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    padding: 0.75rem 2rem;
    border-radius: 0 0 15px 15px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}
/* Language Selector */
.creative-language-selector {
    position: relative;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure globe button is always visible and clickable */
.globe-button {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1000;
}

/* Override inline styles */
.nav-right .creative-language-selector[style*="display: none"] {
    display: flex !important;
}

.globe-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 2px solid rgba(102, 126, 234, 0.8);
    border-radius: 25px;
    color: #334155;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    font-weight: 700;
    min-width: 110px;
    box-shadow: var(--shadow-md);
}

.globe-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(251, 252, 253, 1) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    color: #667eea;
}

.globe-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.current-language {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.globe-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: rgba(102, 126, 234, 0.2);
    transform: translate(-50%, -50%) scale(0);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    70% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}


/* Language Panel */
.language-panel {
    position: fixed;
    top: 80px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(-20px) scale(0.9);
    width: 500px;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px 25px 0 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    right: auto;
}

.language-panel.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
    z-index: 10000 !important;
}

/* Body lock when language panel is open */
body.language-panel-open {
    overflow: hidden !important;
}

body.language-panel-open .language-panel {
    display: flex !important;
}

.language-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    flex-shrink: 0;
    border-radius: 25px 25px 0 0;
}

.language-panel-header h3 {
    color: #333 !important;
    font-weight: 600;
    margin: 0;
}

.close-panel {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-panel:hover {
    background: #667eea;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.language-search {
    padding: 0 30px 20px;
    flex-shrink: 0;
}

.language-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    padding: 15px 20px;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.language-search input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.language-grid {
    flex: 1;
    overflow-y: auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 3px;
}

.language-item:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.language-item.current {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid #667eea;
    transform: translateX(8px) scale(1.05);
}

.flag img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.lang-info {
    flex: 1;
    min-width: 0;
}

.lang-name {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.lang-native {
    display: block;
    color: #667eea;
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0.8;
}

.language-panel-footer {
    padding: 20px 30px 25px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    flex-shrink: 0;
}

.language-panel-footer p {
    color: #333 !important;
    font-weight: 600;
    margin: 0;
}
/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(96, 165, 250, 0.1);
    color: var(--primary-blue);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

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

.version-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Download Cards */
.download-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.download-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-icon {
    font-size: 1.8rem;
}

.advantages {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.advantages h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #86efac;
}

ul {
    list-style-type: none;
    padding-left: 0.5rem;
}

li {
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
}

li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.download-btn {
    display: block;
    text-align: center;
    background: var(--primary-dark);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 1.5rem;
}

.download-btn:hover {
    background: #2563eb;
}
/* Support Section */
.support-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 30%, rgba(51, 65, 85, 0.95) 60%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: supportGlow 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes supportGlow {
    0% { transform: rotate(0deg) scale(1); opacity: 0.6; }
    100% { transform: rotate(180deg) scale(1.3); opacity: 0.2; }
}

.support-section > * {
    position: relative;
    z-index: 1;
}

.support-section h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.support-section h2 .gradient-text {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(96, 165, 250, 0.5)); }
}

.support-content {
    text-align: left;
}

.developer-trust-section {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.developer-trust-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.developer-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.developer-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(96, 165, 250, 0.6);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
    position: relative;
    object-fit: cover;
    object-position: center;
}

.developer-photo::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #60a5fa, #3b82f6, #1e40af, #60a5fa);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.developer-info h4 {
    color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.developer-info p {
    color: #e2e8f0 !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.developer-message {
    background: rgba(30, 41, 59, 0.8) !important;
    color: #f1f5f9 !important;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #60a5fa;
    font-style: italic;
    position: relative;
}

.developer-message::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: #60a5fa;
    opacity: 0.5;
}

.portfolio-link {
    color: #93c5fd !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.portfolio-link:hover {
    color: #60a5fa !important;
    border-bottom-color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.support-options {
    margin: 2rem 0;
}

.support-method {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.support-method:hover {
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.2);
    transform: translateY(-3px);
}

.support-method h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.bank-info-detailed {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bank-section {
    background: rgba(15, 23, 42, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.bank-section:hover {
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.2);
}

.bank-section h4 {
    color: #60a5fa !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.bank-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.detail-item {
    color: #ffffff !important;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid #60a5fa;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.detail-item strong {
    color: #ffd700 !important;
    font-weight: 700;
}

.bank-address {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    color: #ffffff !important;
    line-height: 1.5;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.correspondent-banks h4 {
    color: #ffffff !important;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.correspondent-bank {
    background: rgba(30, 41, 59, 0.8);
    padding: 1rem;
    margin: 0.8rem 0;
    border-radius: 10px;
    border-left: 4px solid #10b981;
    color: #ffffff !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.correspondent-bank:hover {
    background: rgba(30, 41, 59, 1);
    border-left-color: #ffd700;
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.correspondent-bank strong {
    color: #10b981 !important;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.transfer-instructions {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

.transfer-instructions h4 {
    color: #ffffff !important;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.transfer-note {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin-top: 15px;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.transfer-note strong {
    color: #ffd700;
    font-weight: 700;
}

.mobile-banking-compact {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.mobile-banking-compact p {
    color: #ffffff !important;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-banking-compact strong {
    color: #ffd700;
    font-weight: 700;
}

.professional-footer {
    margin-top: 2rem;
    text-align: center;
}

.portfolio-link-text {
    color: #94a3b8;
    font-size: 1rem;
}

/* Back Link */
.back-link {
    text-align: center;
    margin-top: 2rem;
}

.back-link a {
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background: rgba(30, 41, 59, 0.9);
    transform: translateY(-2px);
}

/* Footer */
.page-footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.3);
}

.footer-content {
    margin: 0;
}

.footer-main {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.creator-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.creator-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    background: #ff6b6b;
    border-radius: 50%;
    top: 10%;
    left: 10%;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    background: #4ecdc4;
    border-radius: 50%;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: #45b7d1;
    border-radius: 15px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    width: 70px;
    height: 70px;
    background: #f9ca24;
    border-radius: 50%;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (min-width: 769px) {
    .nav-right .creative-language-selector {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .nav-center .nav-link { display: none !important; }
    .nav-right .creative-language-selector { display: flex !important; }
    .mobile-menu-btn { display: flex !important; }
}

@media (max-width: 768px) {
    .download-options {
        flex-direction: column;
    }
    
    .download-card {
        min-width: 100%;
    }
    
    .support-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .developer-profile {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .developer-photo {
        width: 80px;
        height: 80px;
    }
    
    .support-method {
        padding: 1.5rem;
    }
    
    .bank-details-grid {
        grid-template-columns: 1fr;
    }
    
    .language-panel {
        margin-left: -42.5vw;
        width: 85vw;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
        padding-top: 80px;
    }
    
    .support-section h2 {
        font-size: 2rem;
    }
    
    .language-panel {
        transform: translateX(-50%);
        width: 90vw;
    }
}

/* Support Toggle Button */
.support-toggle-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.support-toggle-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.support-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.support-toggle-btn:hover::before {
    left: 100%;
}

.support-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #5b52f0 0%, #8b5cf6 100%);
}

.support-toggle-btn:active {
    transform: translateY(-1px);
}

.support-toggle-btn i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.support-toggle-btn.active i {
    transform: rotate(180deg);
}

.support-options {
    transition: all 0.3s ease;
}
/* Privacy Policy Link Styling */
.footer-privacy a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-privacy a:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
/* Consolidated Navbar */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
