.logo1 {
    position: relative;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center; 
    font-size: 30px;
    color: white;
    z-index: 1000;
    cursor: pointer;
}

.logo1 img {
    padding-top: 6px;;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.decrypt-text {
    margin-left: 10px;
    line-height: 1; 
    display: inline-block;
    vertical-align: middle;
}

.logo2 {
    position: fixed;
    top: 45%;
    left: 49%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
}

.logo2 img {
    width: 70vmin;
    height: 70vmin;
    object-fit: contain;
}

.logo2:has(img[alt="lineart-ioe"]) {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
}

.logo2 img[alt="lineart-ioe"] {
    width: 100vmin;
    height: 100vmin;
    object-fit: contain;
}

.logo2:has(img[alt="lineart-wel"]) {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
}

.logo2:has(img[alt="lineart-wig"]) {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
}

.logo2:has(img[alt="lineart-wim"]) {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
}

.logo2:has(img[alt="lineart-wlo"]) {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
}

.logo2:has(img[alt="lineart-wml"]) {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
}

.logo2:has(img[alt="lineart-wtc"]) {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
}

/* Table container */
.faculties-container {
    width: 90%;
    margin: 120px auto;
    margin-top: 0px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 20;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (min-width: 1800px) {
    .faculties-container {
        width: 70%;
    }
}

.faculties h2 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.faculties h3 {
    text-align: center;
    color: white;
    margin-bottom: 0px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-top: 40px;
}

.search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.custom-select-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 45px 12px 20px;
    border-radius: 8px; /* Consistent with home page buttons */
    border: 1px solid #f0f3f3;
    background-color: #00000066; /* Consistent with home page buttons */
    backdrop-filter: blur(5px);
    color: white;
    font-size: 18px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace; /* Consistent with home page buttons */
    transition: all 0.3s ease;
    outline: none;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    /* Arrow icon */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;    
}

.custom-select-input.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="18 15 12 9 6 15"></polyline></svg>');
}

.custom-select-input:hover, .custom-select-input:focus {
    background-color: #000000d9;
    color: #cafbf4;
    border-color: #cafbf4;
    box-shadow: 0px 4px 40px #bae4dc80;
}

.custom-select-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.custom-select-input[readonly] {
    cursor: pointer;
    user-select: none;
    caret-color: transparent;
}

/* Custom Dropdown List */
.custom-dropdown-list {
    position: absolute;
    top: 100%;
    /* Align with input which is centered in flex container */
    /* Since parent is flex/centered, absolute child is relative to parent box */
    /* Use left: 50% transform: translateX(-50%) to center it relative to parent */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px; /* Same max-width as input */
    max-height: 300px;
    overflow-y: auto;
    background-color: #000000d9; /* Darker background for list to improve readability */
    backdrop-filter: blur(10px);
    border: 1px solid #f0f3f3;
    border-radius: 8px;
    margin-top: 5px; 
    z-index: 1001; /* Above other elements */
    padding: 0;
    list-style: none;
    display: none; /* Hidden by default */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.custom-dropdown-list.show {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.custom-option {
    padding: 12px 20px;
    color: #f0f3f3;
    font-size: 14px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #cafbf4;
}

.custom-option.highlight-match {
    background-color: rgba(83, 237, 178, 0.2);
    color: #cafbf4;
    font-weight: bold;
}

.input-wrapper {
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
}

.season-picker {
    margin: 12px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.season-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    color: #f0f3f3;
    font-size: 14px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    cursor: pointer;
}

.season-option input[type="radio"] {
    accent-color: #53edb2;
}

.season-option.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

#seasonLato {
    margin-top: 0px;
}

#seasonZima {
    margin-top: 0px;
}

/* Results Table */
.results-container {
    width: 100%;
    margin: 50px auto;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.results-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 1;
    border-radius: 12px;
    color: #e0e0e0;
}

.results-table thead th {
    text-align: left;
    padding: 15px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    font-weight: 500;
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.results-table tr {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(5px);
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-table td {
    padding: 25px 20px;
    vertical-align: top;
    border: none;
}

/* First/Last row border handling */
.results-table tbody tr:last-child {
    border-bottom: none;
}

/* Columns */
.res-platform {
    width: 20%;
}

.platform-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.9;
}

.platform-text {
    display: flex;
    flex-direction: column;
}

.res-platform-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 2px;
}

.res-platform-sub {
    font-size: 13px;
    color: #a0a0a0;
    display: block;
}

.res-download {
    width: 20%;
    vertical-align: top;
    background-color: rgba(255, 255, 255, 0.03); /* Lighter middle column background */
}

.res-notes {
    width: 40%;
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.res-notes ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.res-notes li {
    margin-bottom: 6px;
}

.notes-link {
    color: #53edb2; /* Theme green */
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
}

.notes-link:hover {
    text-decoration: underline;
}

/* Buttons as Links with Icon */
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    color: #53edb2; /* Theme green/cyan */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #83edb2;
    background: transparent;
    border-color: transparent;
    transform: none;
    text-decoration: underline;
}

.btn-action svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Remove old mobile responsiveness that stacked everything into blocks, 
   instead make it scrollable or slightly adjusted if requested, 
   but for now keep the block layout for small screens as it is safer */


.manual-link-container {
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    max-width: 100%;
}

.manual-link-input {
    background: transparent;
    border: none;
    color: #a0a0a0;
    font-size: 12px;
    font-family: 'Consolas', monospace;
    padding: 8px 10px;
    width: 100%;
    outline: none;
    text-overflow: ellipsis;
}

.manual-link-copy {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: #d0d0d0;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.manual-link-copy:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.manual-link-copy svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.manual-label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    h2 {
        margin-top: 20px;
    }

    .season-picker {
        gap: 8px;
    }

    .season-option {
        padding: 7px 10px;
        font-size: 13px;
    }

    .results-table, .results-table tbody, .results-table tr, .results-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .results-table thead { display: none; }
    
    .results-table tr {
        margin-bottom: 10px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(30, 30, 30, 0.4);
        padding: 10px;
    }
    
    .results-table td {
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .results-table td:last-child { border-bottom: none; }
    
    .res-platform, .res-download, .res-notes { width: 100%; }

    .res-download {
        margin-top: 10px;
        border-radius: 12px;
    }
    
    .btn-action { 
        width: auto; 
        justify-content: flex-start; 
        padding: 10px 0;
    }
}


#output {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}


.output-line {
    display: flex;
    border-top: 2px solid #3c4043;
    border-radius: 1px;
    width: 90vw;
    max-width: 800px;
    margin-bottom: 20px;
}

.download-ics-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    padding: 0.8em 1.5em 0.8em 1.2em;
    color: #ffffff;
    background: linear-gradient(
        0deg,
        rgba(55, 130, 84, 1) 0%,
        rgba(83, 237, 178, 1) 100%
    );
    border: none;
    box-shadow: 0 0.7em 1.5em -0.5em rgba(69, 164, 106, 0.6);
    border-radius: 20em;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.06s ease;
    text-decoration: none;
}

.download-ics-btn svg {
  margin-right: 8px;
  transform: translateY(2px);
}

.download-ics-btn:hover {
    box-shadow: 0 0.6em 1.6em -0.5em rgba(69, 164, 106, 0.65);
    background: linear-gradient(
        0deg,
        rgba(69, 164, 106, 1) 0%,
        rgba(120, 245, 198, 1) 100%
    );
}

.download-ics-btn:active {
    transform: translateY(1px);
    box-shadow: 0 0.35em 1em -0.5em rgba(55, 130, 84, 0.55);
    background: linear-gradient(
        0deg,
        rgba(46, 110, 71, 1) 0%,
        rgba(69, 200, 155, 1) 100%
    );
}


.google-calendar-btn {
    --lift: 0px; /* controls vertical movement */
    display: inline-flex;
    align-items: center;
    padding: 12px 20px 12px 50px;
    border: 1px solid rgba(218, 220, 224, 0.8);
    border-radius: 9999px; /* pill shape */
    background-color: #ffffff;
    color: #3c4043;
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    text-decoration: none;
    cursor: pointer;

    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-position: 18px 50%;
    background-size: 18px 18px;

    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(var(--lift));
    transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.08s ease;
}

.google-calendar-btn:hover {
    --lift: -1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14), 0 10px 24px rgba(0, 0, 0, 0.12);
    background-color: #f8fbff; 
    border-color: #d2e3fc; 
    color: #1a73e8;
}

.google-calendar-btn:active {
    background-color: #f6f9fe;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}

.google-calendar-btn:focus { outline: none; }

.google-calendar-btn:focus-visible {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.35), 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Apple-style subscribe button */
.apple-login-button {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    --lift: 0px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 32px 16px 32px;
    border-radius: 9999px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.35);
    transform: translateY(var(--lift));
    transition: transform 0.08s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.apple-login-button .apple-icon {
    width: 22px;
    height: 22px;
    color: currentColor; /* inherits white */
    display: flex;
}

.apple-login-button .btn-label {
    display: inline-block;
    transform: translateY(var(--lift));
}

.apple-login-button:hover {
    --lift: -1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 10px 24px rgba(0,0,0,0.45);
    background-color: #0a0a0a;
}

.apple-login-button:active {
    --lift: 1px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.apple-login-button:focus { outline: none; }
.apple-login-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3), 0 1px 3px rgba(0,0,0,0.5);
}

#subscribe-calendar-link:hover {
    background-color: rgb(69, 164, 106);
    box-shadow: 0 1px 8px rgba(69, 164, 106, 0.6);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.png-generated-from {
    margin-top: 90px;
    font-size: 20px;
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: white;
    opacity: 0.7;
}

.schedule-url {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    margin-bottom: 2px;
    font-size: 20px;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    word-break: break-all;
}

.schedule-url:hover {
    text-decoration: underline;
}

.schedule-preview img {
    width: 90%;
    margin-top: 0px;
    height: auto; 
    display: block;
    margin-inline: auto; 
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.command .copy img {
    background-color: rgba(85, 85, 85, 0.858);
    padding: 7px 7px;
    width: 24px;
    transform: translateY(-9px);
    opacity: 0.4;
    border-radius: 5px;
}

.command {
    display: flex;
    position: relative;
    background-color: rgba(63, 63, 63, 0.224);
    padding: 15px;
    width: 1000px;
    border-radius: 8px;
    max-width: 650px;
}

code {
    text-wrap: nowrap;
    left: 0;
    font-family: monospace;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.858);
    margin-right: 40px;
}

.copy {
    position: absolute;
    right: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

.command:hover .sh {
    opacity: 0;
}

.command:hover .copy {
    opacity: 0.6;
}

.command .copy:hover {
    opacity: 1;
    cursor: pointer;
}

.copied-msg {
    opacity: 0.8 !important;
    color: white;
    position: absolute;
    background-color: rgba(85, 85, 85, 0.858);
    right: 45px;
    top: -8px;
    padding: 8px 13px;
    font-weight: 500;
    font-size: 15px;
    opacity: 0.4;
    border-radius: 5px;
    transition-delay: 2s;
}

.schedule-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.schedule-output {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.schedule-placeholder {
    color: white;
    font-style: italic;
    opacity: 0.7;
    font-size: 20px;
    margin: 50px 0;
}

.subscribe-apple-title {
    width: 90vw;
    margin-top: 15px;
    font-size: 18px;
    color: white;
}

.download-apple-title {
    width: 90vw;
    margin-top: 50px;
    font-size: 18px;
    color: white;
}

.google-apple-title {
    width: 90vw;
    margin-top: 50px;
    font-size: 18px;
    color: white;
}

.google-android-title {
    width: 90vw;
    font-size: 18px;
    color: white;
}

.download-android-title {
    width: 90vw;
    margin-top: 50px;
    font-size: 18px;
    color: white;
}

.download-desktop-title {
    width: 90vw;
    font-size: 18px;
    color: white;
}

.google-desktop-title {
    width: 90vw;
    margin-top: 50px;
    font-size: 18px;
    color: white;
}

.macos-desktop-title {
    width: 90vw;
    margin-top: 50px;
    font-size: 18px;
    color: white;
}

.webcal-desktop-title {
    width: 90vw;
    font-size: 18px;
    color: white;
}


@media (max-width: 1100px) {
    .logo1 {
        top: 20px;
        left: 20px;
        font-size: 24px;
    }

    .faculties-container {
        margin: 40px auto;
    }

    .command {
        max-width: calc(95vw - 40px);
        box-sizing: border-box;
    }

    .command code {
        margin-bottom: 0px;
        overflow-x: auto;
    }

    .command .copy:hover {
        opacity: 1;
    }
    
    .copy {
        opacity: 0.6;
    }

    .logo2 {
        opacity: 0.1;
        z-index: -1;
        top: 40%;
        left: 49%;
    }

    .logo2 img {
        width: 100vmin;
        height: 100vmin;
    }

    .logo2:has(img[alt="lineart-ioe"]) {
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.1;
        z-index: -1;
    }

    .logo2 img[alt="lineart-ioe"] {
        width: 95vmin;
        height: 95vmin;
        object-fit: contain;
    }

    .logo2:has(img[alt="lineart-wel"]) {
        opacity: 0.2;
    }

    .logo2:has(img[alt="lineart-wig"]) {
        top: 40%;
        left: 50%;
        opacity: 0.2;
    }

    .logo2:has(img[alt="lineart-wim"]) {
        top: 40%;
        left: 50%;
        opacity: 0.2;
    }

    .logo2 img[alt="lineart-wim"] {
        width: 95vmin;
        height: 95vmin;
        object-fit: contain;
    }

    .logo2:has(img[alt="lineart-wlo"]) {
        top: 40%;
        left: 50%;
        opacity: 0.2;
    }

    .logo2 img[alt="lineart-wlo"] {
        width: 95vmin;
        height: 95vmin;
        object-fit: contain;
    }

    .logo2:has(img[alt="lineart-wml"]) {
        top: 40%;
        left: 50%;
        opacity: 0.2;
    }

    .logo2 img[alt="lineart-wml"] {
        width: 95vmin;
        height: 95vmin;
        object-fit: contain;
    }

    .logo2:has(img[alt="lineart-wtc"]) {
        top: 45%;
        left: 50%;
        opacity: 0.2;
    }

    .logo2 img[alt="lineart-wtc"] {
        width: 95vmin;
        height: 95vmin;
        object-fit: contain;
    }
}

@media (max-width: 1100px) {
    .groups-select h1 {
        font-size: 35px;
        margin-bottom: 15px;
    }
    #seasonLato {
        margin-top: 3px;
    }

    #seasonZima {
        margin-top: 3px;
    }
    .subscribe-apple-title {
        font-size: 16px;
    }

    .download-apple-title {
        font-size: 16px;
    }

    .google-apple-title {
        font-size: 16px;
    }

    .google-android-title {
        font-size: 16px;
    }

    .download-android-title {
        font-size: 16px;
    }

    .download-desktop-title {
        font-size: 16px;
    }

    .google-desktop-title {
        font-size: 16px;
    }

    .macos-desktop-title {
        font-size: 16px;
    }

    .webcal-desktop-title {
        font-size: 16px;
    }
}


/* Remove duplicate definition at end */

/* --- Poradniki (Guides) Section --- */
.guides-container {
    width: 100%;
    margin-top: 500px;
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 0.8s ease;
}

.guides-heading {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    text-align: center;
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.guide-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.guide-card {
    display: block;
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: left;
}

/* media query removed as layout is naturally responsive in block mode */

.guide-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.guide-icon {
    display: block;
    width: 28px;
    height: 28px;
    margin-right: 15px;
    object-fit: contain;
}

.guide-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2; /* Tighten line height for better centering */
    padding-top: 2px; /* Visual optical adjustment */
}

.guide-steps {
    padding-left: 20px;
    margin: 0;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

.guide-steps li {
    margin-bottom: 12px;
}

.guide-steps ul {
    opacity: 0.7;
    margin-bottom: 12px;
}

.guide-steps li::marker {
    color: #53edb2;
    font-weight: bold;
}

.guide-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}
