/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3498db;
    --primary-hover: #2980b9;
    --secondary-color: #7f8c8d;
    --secondary-hover: #636e72;
    --success-color: #27ae60;
    --success-hover: #219653;
    --bg-color: #f7f9fc;
    --text-color: #333;
    --border-color: #eee;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Header styles */
header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    max-width: 180px;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    color: var(--text-color);
    z-index: 1001; /* Ensure it's above other elements */
}

.menu-toggle:hover {
    color: white;
    background-color: #27ae60;
}
/* Navigation Menu */
.nav-menu {
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu ul li {
    margin-left: 10px;
}

.nav-menu ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 20px;
}

.nav-menu ul li a i {
    margin-right: 5px;
}

.nav-menu ul li a:hover {
    color:#27ae60;
    background-color: rgba(7, 167, 26, 0.1);
}

.nav-menu ul li.active a {
    color: #fff;
    background-color: #27ae60;
    font-weight: 600;
}

/* Overlay for mobile menu */
.overlay {
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        display: none;
    }
    
    .overlay.active {
        display: block;
    }
}

.overlay.active {
    display: block;
}

.menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
}

.menu-close:hover {
    color: white;
    background-color: #27ae60;
}

@media (min-width: 993px) {
    .menu-close {
        display: none !important;
    }
}
/* Container */
.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 32px;
}

h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 22px;
}

.subtitle {
    text-align: center;
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--secondary-color);
}

h3 {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    color: #2c3e50;
}

/* Search box */
.search-box {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.url-form {
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    margin-bottom: 15px;
    flex-wrap: nowrap;
}

input[type="text"] {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 0;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.platform-examples {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.platform-examples p {
    font-weight: 600;
    margin-bottom: 5px;
}

.platform-examples ul {
    list-style: none;
    padding-left: 10px;
}

.platform-examples li {
    margin-bottom: 5px;
    font-size: 13px;
    color: #666;
}

button {
    padding: 15px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

a.install-button {
    padding: 12px 20px;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.download-main-btn {
    background-color: var(--success-color);
}

.download-main-btn:hover {
    background-color: var(--success-hover);
    transform: translateY(-2px);
}

button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.secondary-btn {
    background-color: var(--secondary-color);
    border-radius: 4px;
}

.secondary-btn:hover {
    background-color: var(--secondary-hover);
}

.terms {
    text-align: center;
    color: var(--secondary-color);
    font-size: 13px;
    margin-bottom: 15px;
}

.terms a {
    color: var(--primary-color);
    text-decoration: none;
}

.safe-badge {
    text-align: center;
    margin-bottom: 10px;
    color: var(--success-color);
    font-size: 14px;
}

.safe-badge i {
    margin-right: 5px;
}

.verified {
    color: var(--secondary-color);
    font-size: 12px;
    margin-left: 8px;
}

.norton-badge {
    text-align: center;
    color: var(--secondary-color);
    font-size: 13px;
}

.norton-badge img {
    height: 16px;
    vertical-align: middle;
    margin: 0 5px;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    text-align: center;
    flex: 1 0 calc(25% - 15px);
    min-width: 120px;
    cursor: pointer;
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: box-shadow 0.3s;
}

.feature-icon:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon i {
    font-size: 28px;
    margin-bottom: 10px;
}

.feature-icon span {
    font-size: 14px;
    font-weight: 600;
}

.youtube-icon i {
    color: #FF0000;
}

.facebook-icon i {
    color: #1877F2;
}

.instagram-icon i {
    color: #C13584;
}

.twitter-icon i {
    color: #1DA1F2;
}

/* Platform Support */
.platform-support {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.support-item {
    padding: 15px;
    border-radius: var(--border-radius);
    background-color: #f9f9f9;
    border-left: 3px solid #ddd;
}

.support-item:nth-child(1) {
    border-left-color: #FF0000;
}

.support-item:nth-child(2) {
    border-left-color: #1877F2;
}

.support-item:nth-child(3) {
    border-left-color: #C13584;
}

.support-item:nth-child(4) {
    border-left-color: #1DA1F2;
}

.support-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

.support-item:nth-child(1) i {
    color: #FF0000;
}

.support-item:nth-child(2) i {
    color: #1877F2;
}

.support-item:nth-child(3) i {
    color: #C13584;
}

.support-item:nth-child(4) i {
    color: #1DA1F2;
}

.support-item h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.support-item ul {
    list-style: none;
}

.support-item ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.support-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* Highlight box */
.highlight-box {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    text-align: center;
    background-image: linear-gradient(to right, rgba(52, 152, 219, 0.1), rgba(39, 174, 96, 0.1));
}

.highlight-header {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f1c40f;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-box h2 {
    margin-bottom: 25px;
    font-size: 22px;
}

.install-button {
    background-color: var(--success-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(39, 174, 96, 0.2);
}

.install-button:hover {
    background-color: var(--success-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(39, 174, 96, 0.3);
}

.install-button i {
    margin-right: 8px;
}

/* Loading spinner */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

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

/* Error container */
.error-container {
    background-color: #ffecec;
    border-left: 4px solid #f44336;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Result container */
.result-container {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.video-info {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
}

.video-thumbnail {
    flex: 0 0 200px;
    margin-right: 20px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-details {
    flex: 1;
}

.download-options {
    margin-bottom: 30px;
}

/* Platform badge */
.platform-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.youtube {
    background-color: #FF0000;
}

.facebook {
    background-color: #1877F2;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.twitter {
    background-color: #1DA1F2;
}

/* Format list table */
.formats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    overflow-x: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.formats-table th, 
.formats-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.formats-table th {
    background-color: #f2f2f2;
    font-weight: 600;
}

.formats-table tr:hover {
    background-color: #f9f9f9;
}

.formats-table tr:last-child td {
    border-bottom: none;
}

.download-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--success-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.new-search {
    text-align: center;
    margin-top: 30px;
}

.new-search button {
    padding: 10px 20px;
    border-radius: 4px;
}

/* Tips section */
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.platform-tip {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 15px;
}

.platform-tip h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.platform-tip h3 i {
    font-size: 20px;
}

.platform-tip h3 i.fa-youtube {
    color: #FF0000;
}

.platform-tip h3 i.fa-instagram {
    color: #C13584;
}

.platform-tip h3 i.fa-facebook {
    color: #1877F2;
}

.platform-tip h3 i.fa-twitter {
    color: #1DA1F2;
}

.platform-tip p {
    margin-bottom: 10px;
    font-size: 14px;
}

.platform-tip strong {
    font-weight: 600;
}

/* How to section */
.how-to-section {
    display: flex;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.how-to-content {
    flex: 1;
    padding: 25px;
}

.how-to-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.how-to-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.how-to-content li {
    margin-bottom: 10px;
}

.how-to-content .note {
    font-style: italic;
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.how-to-image {
    flex: 1;
    position: relative;
}

.how-to-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Method section */
.method-section {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 30px;
    padding: 25px;
}

.method-header {
    display: inline-block;
    padding: 5px 10px;
    background-color: #95a5a6;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 10px;
}

.method-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    margin-top: 40px;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-size: 14px;
    background-color: #fff;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.footer p {
    margin-bottom: 8px;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100%;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .nav-menu ul li {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu ul li a {
        border-radius: 0;
    }
    
    .nav-menu ul li:last-child {
        border-bottom: none;
    }
    
    .menu-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 20px;
        cursor: pointer;
    }
}

/* Tablet specific */
@media (min-width: 577px) and (max-width: 991px) {
    .logo-img {
        height: 28px;
        max-width: 160px;
    }
    
    .feature-item {
        flex: 1 0 calc(50% - 15px);
    }
    
    .how-to-section,
    .method-content {
        flex-direction: column;
    }
    
    .how-to-image {
        max-height: 300px;
        overflow: hidden;
    }
}

/* Mobile styles */
@media (max-width: 576px) {
    header {
        padding: 10px 15px;
    }
    
    .logo-img {
        height: 24px;
        max-width: 140px;
    }
    
    .container {
        padding: 0 15px;
        margin: 10px auto;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .search-box {
        padding: 15px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    input[type="text"] {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    button.download-main-btn {
        border-radius: 4px;
        width: 100%;
    }
    
    .feature-item {
        flex: 1 0 calc(50% - 15px);
    }
    
    .how-to-section,
    .method-content {
        flex-direction: column;
    }
    
    .video-info {
        flex-direction: column;
    }
    
    .video-thumbnail {
        margin-right: 0;
        margin-bottom: 15px;
        max-width: 100%;
    }
    
    .formats-table {
        display: block;
        overflow-x: auto;
    }
    
    .formats-table th, 
    .formats-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .download-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Prep - Can be activated later with a toggle */
[data-theme="dark"] {
    --primary-color: #3498db;
    --primary-hover: #2980b9;
    --secondary-color: #95a5a6;
    --secondary-hover: #7f8c8d;
    --success-color: #27ae60;
    --success-hover: #219653;
    --bg-color: #1a1a1a;
    --text-color: #f5f5f5;
    --border-color: #333;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
/* Platform Shortcuts Section */
.platform-shortcuts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.platform-shortcut {
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.platform-shortcut:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.platform-shortcut i {
    font-size: 16px;
}

.youtube-shortcut {
    background-color: #FF0000;
}

.youtube-shortcut:hover {
    background-color: #cc0000;
}

.instagram-shortcut {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.instagram-shortcut:hover {
    opacity: 0.9;
}

.facebook-shortcut {
    background-color: #1877F2;
}

.facebook-shortcut:hover {
    background-color: #0d65d9;
}

.twitter-shortcut {
    background-color: #1DA1F2;
}

.twitter-shortcut:hover {
    background-color: #0c85d0;
}

.threads-shortcut {
    background: linear-gradient(45deg, #000000, #333333);
}

.threads-shortcut:hover {
    background: linear-gradient(45deg, #333333, #555555);
}

/* Learn More Link */
.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.learn-more i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Tip Link */
.tip-link {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.tip-link:hover {
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.tip-link i {
    margin-right: 5px;
}

/* Platform Buttons */
.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.platform-btn i {
    font-size: 16px;
}

.btn-youtube {
    background-color: #FF0000;
}

.btn-youtube:hover {
    background-color: #cc0000;
}

.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.btn-instagram:hover {
    opacity: 0.9;
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-facebook:hover {
    background-color: #0d65d9;
}

.btn-twitter {
    background-color: #1DA1F2;
}

.btn-twitter:hover {
    background-color: #0c85d0;
}

.btn-threads {
    background: linear-gradient(45deg, #000000, #333333);
}

.btn-threads:hover {
    background: linear-gradient(45deg, #333333, #555555);
}

/* Platform Icon - Threads */
.threads-icon i {
    color: #000000;
}

/* Support for Threads in feature and support section */
.support-item:nth-child(5) {
    border-left-color: #000000;
}

.support-item:nth-child(5) i {
    color: #000000;
}

/* Platform badge for Threads */
.threads {
    background: linear-gradient(45deg, #000000, #333333);
}

/* Threads tip styling */
.platform-tip h3 i.fa-brands.fa-threads {
    color: #000000;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .platform-shortcuts {
        flex-direction: column;
        align-items: stretch;
    }
    
    .platform-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .platform-buttons {
        flex-direction: column;
    }
}