body { 
    margin: 0; 
    padding: 0; 
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background-color: #000;
    
    background-image: url('../img/bg-desktop.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
    body { 
        background-image: url('../img/bg-mobile.jpg');
        background-attachment: scroll;
    }
}

#starfield-canvas { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1; 
    pointer-events: none; 
}

main {
    display: block;
}

.content-box, .privacy-content {
    position: relative;
    z-index: 2;
    background-color: rgb(10, 0, 30);
    background: rgba(10, 0, 30, 0.9);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    
    border: 1.5px solid rgba(255, 64, 128, 0.5);
    border-radius: 24px;
    
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 64, 128, 0.3),
        inset 0 0 30px rgba(255, 64, 128, 0.1);
        
    color: #fff;
    text-align: center;

    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    mix-blend-mode: normal; 
}

.content-box {
    margin: 15vh auto 0;
    padding: 60px 40px;
    max-width: 640px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.privacy-content {
    margin: 8vh auto 0;
    padding: 50px 40px;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.privacy-content h1, .page-heading {
    font-size: 38px;
    margin-bottom: 32px;
    color: #ff4080;
    text-shadow: 0 0 20px rgba(255, 64, 128, 0.9);
    letter-spacing: 1px;
}

.privacy-content p {
    margin-bottom: 1rem;
    text-align: left;
}

.privacy-content center {
    text-align: center;
    display: block;
}

.privacy-content a { 
    color: #ff70a0; 
    text-decoration: underline; 
    transition: color 0.3s ease;
}
.privacy-content a:hover { color: #fff; }

.close-btn {
    display: inline-block;
    width: auto;
    min-width: 200px;
    margin: 50px auto 0;
    padding: 16px 48px;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit; 
    line-height: normal;
    background: rgba(255,64,128,0.25);
    border: 2px solid #ff4080;
    border-radius: 50px;
    color: #ff4080;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255,64,128,0.4);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.close-btn:hover {
    background: #ff4080;
    color: #fff;
    box-shadow: 0 0 40px rgba(255,64,128,0.95);
    transform: translateY(-2px);
}

.close-btn:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
    box-shadow: 0 0 30px rgba(255,64,128,0.8);
}

.close-btn:active {
    transform: translateY(1px);
    box-shadow: 0 0 10px rgba(255,64,128,0.6);
}

footer { 
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 2rem; 
    padding-bottom: 2rem;
    font-size: 0.9em; 
    color: #ff90b0; 
    opacity: 0.9; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

@media (max-width: 1024px) {
    .content-box { 
        margin: 60px auto; 
        padding: 50px 30px; 
        font-size: 20px; 
        width: 90%;
        box-sizing: border-box;
    }
    .privacy-content { 
        margin: 40px auto; 
        padding: 40px 25px; 
        width: 90%;
        box-sizing: border-box;
    }
    .privacy-content h1, .page-heading { font-size: 32px; }
}

.app-section {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 64, 128, 0.3);
}

.app-section h2 {
    font-size: 28px;
    color: #ff90b0;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 64, 128, 0.5);
}

.center-text {
    text-align: center !important;
    font-size: 0.95em;
    opacity: 0.8;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.store-btn {
    width: 160px; 
    background: rgba(255,64,128,0.1);
    border: 1px solid #ff4080;
    border-radius: 12px;
    color: #ff4080;
    padding: 12px 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255,64,128,0.2);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    line-height: normal;
    text-decoration: none;
}

.store-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.store-btn[data-platform="google"] {
    border-color: #3DDC84;
    color: #3DDC84;
    background: rgba(61, 220, 132, 0.1);
    box-shadow: 0 0 15px rgba(61, 220, 132, 0.2);
}

.store-btn[data-platform="google"]:hover, 
.store-btn[data-platform="google"].active {
    background: #3DDC84;
    color: #000000;
    box-shadow: 0 0 25px rgba(61, 220, 132, 0.6);
    transform: translateY(-2px);
}

.store-btn[data-platform="apple"] {
    border-color: #e0e0e0;
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.store-btn[data-platform="apple"]:hover, 
.store-btn[data-platform="apple"].active {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.store-btn:not([data-platform]):hover {
    background: #ff4080;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255,64,128,0.6);
    transform: translateY(-2px);
}

.store-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.app-panel {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 64, 128, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-top: 10px;
    animation: fadeIn 0.4s ease;
    
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: left;
}

.app-panel.show {
    display: flex;
}

.qr-container {
    padding: 5px;
    border-radius: 8px;
    border: 2px solid #ff4080;
    box-shadow: 0 0 15px rgba(255,64,128,0.3);
}

.qr-container img {
    display: block;
    width: 150px;
    height: 150px;
}

.link-container p {
    margin-top: 0;
    font-size: 0.9em;
    color: #ffcae0;
}

.download-link {
    display: inline-block;
    margin-top: 5px;
    font-weight: bold;
    font-size: 1.1em;
    color: #fff !important;
    text-decoration: none;
    border-bottom: 2px solid #ff4080;
}

.download-link:hover {
    color: #ff4080 !important;
    text-shadow: 0 0 10px rgba(255, 64, 128, 0.8);
}

.download-link:focus-visible {
    outline: 2px solid #ffffff;
    border-radius: 2px;
    background: rgba(255,64,128,0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .app-panel.show {
        flex-direction: column;
        text-align: center;
    }
    .link-container p {
        text-align: center;
    }
}

.about-icon {
    float: right;
    width: 150px;
    height: 150px;
    margin: 0 0 15px 20px;
    border-radius: 50%;
    border: 2px solid #ff4080;
    box-shadow: 0 0 15px rgba(255,64,128,0.5);
    shape-outside: circle(50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255,64,128,0.8);
}

.remote-section {
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 64, 128, 0.3);
    text-align: center;
}

.remote-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid #ff4080;
    box-shadow: 0 0 20px rgba(255,64,128,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.remote-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(255,64,128,0.8);
}

.remote-section h2, .social-section h2 {
    font-size: 26px;
    color: #ff90b0;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 64, 128, 0.5);
}

.social-section {
    margin-top: 30px;
    border-top: 1px solid rgba(255,64,128,0.2);
    padding-top: 20px;
}

.app-section {
    clear: both;
}

@media (max-width: 600px) {
    .about-icon {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }
    
    .privacy-content p {
        text-align: center; 
    }
}

.app-split-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    text-align: left;
}

.phone-column {
    flex: 0 0 auto;
}

.app-mockup-img {
    display: block;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 64, 128, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.app-mockup-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 35px rgba(255, 64, 128, 0.8));
}

.content-column {
    flex: 1;
}

.app-split-layout h2, .app-split-layout p {
    text-align: left;
}

.app-split-layout .store-buttons {
    justify-content: flex-start;
}

.app-split-layout .center-text {
    text-align: left !important;
}

@media (max-width: 768px) {
    .app-split-layout {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .app-split-layout h2, 
    .app-split-layout p,
    .app-split-layout .center-text {
        text-align: center !important;
    }
    
    .app-split-layout .store-buttons {
        justify-content: center;
    }

    .app-mockup-img {
        max-width: 180px;
        margin: 0 auto 10px auto;
    }
}

.social-side-img {
    display: block;
    max-width: 250px; 
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 64, 128, 0.3);
    box-shadow: 0 0 20px rgba(255, 64, 128, 0.3);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.social-side-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 64, 128, 0.6);
}

.app-split-layout .content-column.centered-content {
    text-align: center;
}

.app-split-layout .content-column.centered-content h2,
.app-split-layout .content-column.centered-content p {
    text-align: center;
}

.app-split-layout .content-column.centered-content .store-buttons {
    justify-content: center;
}

@media (max-width: 768px) {
    .social-side-img {
        margin: 25px auto 0 auto; 
        max-width: 220px;
    }
}

.privacy-checklist.compact {
    margin: 20px auto;
    padding: 15px 20px;
    max-width: 550px;
    background: rgba(10, 0, 30, 0.75);
    border: 1px solid rgba(255, 64, 128, 0.4);
    border-radius: 16px;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.6),
        0 0 25px rgba(255, 64, 128, 0.2),
        inset 0 0 15px rgba(255, 64, 128, 0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.privacy-checklist.compact h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff4080;
    text-shadow: 0 0 10px rgba(255, 64, 128, 0.7);
    text-align: center;
}

.privacy-checklist.compact ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-checklist.compact li {
    font-size: 15px;
    line-height: 1.4;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
    
    display: flex; 
    align-items: flex-start;
    text-align: left;
}

.checklist-content {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.checklist-desc {
    font-size: 0.85em; 
    color: #ffcae0;
    opacity: 0.8;
    margin-top: 2px;
    font-weight: normal;
}

@media (max-width: 800px) {
    .privacy-checklist.compact ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.fcc-status-box {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ff4080;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
}
.fcc-status-heading {
    margin: 0;
    color: #fff;
}

.no-decoration {
    text-decoration: none !important;
}

.corner-copyright {
    position: fixed;
    bottom: 12px;
    right: 16px;
    font-size: 13px;
    color: #cccccc;
    opacity: 0.6;
    z-index: 99999;
    pointer-events: none;
    mix-blend-mode: screen;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

@media only screen and (max-width: 480px) {
    .corner-copyright { 
        right: 10px; 
        font-size: 12px; 
    }
}