* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
    font-weight: 100;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    font-weight: 100;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    overflow-x: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 7.2px;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    width: 66.24px;
    height: 66.24px;
    flex-shrink: 0;
    padding-left: 12px;
}

.logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.site-name-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.site-name-link:hover {
    opacity: 0.8;
}

.site-name {
    font-size: 24.00px;
    font-weight: 100;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
}

.beta-tag {
    font-size: 10px;
    font-weight: 100;
    color: #00ff00;
    margin-left: 2px;
    vertical-align: super;
    text-transform: lowercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: 20px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #aaa;
}

.nav-link:active {
    color: #888;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 57.8px 20px 40px;
}

.security-message {
    width: 100%;
    max-width: 756px;
    margin-bottom: 30px;
    text-align: center;
    color: #ff9292;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.5;
}

.tab-switcher {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 702px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
}

.tab-button {
    flex: 1;
    padding: 12px 24px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #888;
    font-size: 14px;
    font-family: inherit;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.tab-button:hover {
    color: #aaa;
}

.tab-button.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.tab-content {
    display: none;
    width: 100%;
    max-width: 807px;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-upload-container {
    width: 100%;
    max-width: 807px;
    margin-bottom: 30px;
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.file-input {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 20px;
    background-color: #1a1a1a;
    border: 2px dashed #333;
    border-radius: 8px;
    color: #888;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-label:hover {
    border-color: #555;
    background-color: #2a2a2a;
    color: #aaa;
}

.upload-button {
    padding: 40px 32px;
    width: 120px;
    background-color: #2d3a2d;
    border: 1px solid #3a4a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.upload-button:hover {
    background-color: #3a4a3a;
    border-color: #4a5a4a;
}

.upload-button:active {
    transform: scale(0.98);
}

.file-label-text {
    pointer-events: none;
}

.retrieve-container {
    width: 100%;
    max-width: 702px;
    margin-bottom: 30px;
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.retrieve-input {
    flex: 1;
    padding: 40px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.retrieve-input:focus {
    border-color: #555;
}

.copy-button {
    padding: 0 32px;
    background-color: #2d3a2d;
    border: 1px solid #3a4a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-button:hover {
    background-color: #3a4a3a;
    border-color: #4a5a4a;
}

.copy-button:active {
    transform: scale(0.98);
}

.copy-button.copied {
    background-color: #2d4a2d;
    border-color: #3a6a3a;
}

.input-container {
    width: 100%;
    max-width: 807px;
    margin-bottom: 30px;
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.repeat-buttons-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: -7%;
    position: relative;
}

.repeat-button {
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.repeat-button:hover {
    opacity: 0.7;
}

.repeat-button:active {
    opacity: 0.5;
}

.repeat-button.selected {
    opacity: 1;
}

.repeat-button.selected::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    z-index: 10;
    display: block;
}

.repeat-icon {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.secret-input {
    flex: 1;
    padding: 40px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    text-align: center;
}

.share-button {
    padding: 40px 32px;
    width: 120px;
    background-color: #2d3a2d;
    border: 1px solid #3a4a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.share-button:hover {
    background-color: #3a4a3a;
    border-color: #4a5a4a;
}

.share-button:active {
    transform: scale(0.98);
}

.loading-bar-container {
    width: 100%;
    max-width: 702px;
    margin-bottom: 30px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-bar-container.show {
    display: block;
    opacity: 1;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        #2d3a2d 0%, 
        #3a4a3a 25%, 
        #4a5a4a 50%, 
        #3a4a3a 75%, 
        #2d3a2d 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loading-progress 2s ease-in-out forwards,
               loading-shimmer 1.5s ease-in-out infinite;
}

@keyframes loading-progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes loading-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.secret-input:focus {
    border-color: #555;
}

.secret-input::placeholder {
    color: #666;
}

.buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    max-width: 807px;
}

.time-button {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.time-button:hover {
    background-color: #2a2a2a;
    border-color: #555;
}


.time-button.selected {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
                0 0 30px rgba(255, 255, 255, 0.3),
                0 0 45px rgba(255, 255, 255, 0.2);
    border-color: #888;
    background-color: #2a2a2a;
}

.buttons-container.custom-mode {
    justify-content: center;
}

.buttons-container.custom-mode .time-button:not(.hidden) {
    flex: 1;
    min-width: 0;
    transition: none;
}

.time-button.hidden {
    visibility: hidden;
    pointer-events: none;
}

.custom-inputs-container {
    display: none;
    gap: 12px;
    width: 100%;
    max-width: 650px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.custom-inputs-container.show {
    display: flex;
    flex-wrap: wrap;
}

.custom-time-input {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-time-input:focus {
    border-color: #555;
}

.custom-time-input::placeholder {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        padding: 15px;
    }

    .logo {
        width: 52.44px;
        height: 52.44px;
        padding-left: 10px;
    }

    .site-name {
        font-size: 19.44px;
    }

    .beta-tag {
        font-size: 8px;
        margin-left: 2px;
    }

    .logo-container {
        gap: 5.4px;
    }

    .header-nav {
        gap: 16px;
        margin-right: 10px;
    }

    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 8px;
        flex-wrap: wrap;
    }

    .logo {
        width: 40px;
        height: 40px;
        padding-left: 4px;
    }

    .site-name {
        font-size: 14px;
    }

    .beta-tag {
        font-size: 6px;
        margin-left: 2px;
    }

    .logo-container {
        gap: 4px;
    }

    .header-nav {
        gap: 8px;
        margin-right: 0;
        margin-top: 8px;
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 11px;
        padding: 4px 6px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 40.46px 15px 30px;
    }

    .input-container {
        max-width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .repeat-buttons-column {
        margin-left: 0;
        order: -1;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }

    .retrieve-container {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .copy-button {
        padding: 0 24px;
        font-size: 14px;
        width: 100%;
        margin-top: 10px;
    }

    .buttons-container {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .repeat-icon {
        width: 40px;
        height: 40px;
    }

    .secret-input {
        width: 100%;
        order: 0;
    }

    .share-button {
        padding: 35px 20px;
        width: 100%;
        font-size: 15px;
        margin-top: 10px;
        order: 1;
    }

    .upload-button {
        padding: 35px 20px;
        width: 100%;
        font-size: 15px;
        margin-top: 10px;
    }

    .time-button {
        padding: 10px 16px;
        font-size: 12px;
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }

    .custom-time-input {
        min-width: calc(33.333% - 7px);
        font-size: 13px;
    }

    .file-upload-container {
        flex-wrap: wrap;
    }

    .file-label {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 80px 10px 80px;
    }

    .security-message {
        font-size: 12px;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .tab-button {
        padding: 10px 12px;
        font-size: 12px;
    }

    .file-label {
        padding: 30px 12px;
        font-size: 13px;
    }

    .retrieve-input {
        padding: 30px 12px;
        font-size: 14px;
        width: 100%;
    }

    .copy-button {
        padding: 0 20px;
        font-size: 13px;
        width: 100%;
        margin-top: 10px;
    }

    .repeat-icon {
        width: 32px;
        height: 32px;
    }

    .secret-input {
        padding: 30px 12px;
        font-size: 14px;
        width: 100%;
    }

    .share-button {
        padding: 30px 16px;
        width: 100%;
        font-size: 14px;
        margin-top: 10px;
    }

    .upload-button {
        padding: 30px 16px;
        width: 100%;
        font-size: 14px;
        margin-top: 10px;
    }

    .time-button {
        padding: 12px 10px;
        font-size: 11px;
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }

    .buttons-container {
        gap: 8px;
        flex-wrap: wrap;
    }

    .custom-inputs-container {
        gap: 8px;
        flex-wrap: wrap;
        width: 100%;
    }

    .custom-time-input {
        min-width: calc(33.333% - 6px);
        font-size: 12px;
        padding: 10px 8px;
    }

    .input-container {
        gap: 8px;
    }

    .repeat-buttons-column {
        gap: 6px;
        margin-bottom: 8px;
    }

    .file-upload-container {
        gap: 8px;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #888;
    font-size: 11px;
    font-weight: 100;
    z-index: 100;
}

.footer-text {
    color: #888;
}

.maple-leaf {
    font-size: 14px;
    display: inline-block;
}

@media (max-width: 768px) {
    .footer {
        padding: 15px;
        font-size: 6.5px;
    }

    .maple-leaf {
        font-size: 7.5px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 12px;
        font-size: 6px;
    }

    .maple-leaf {
        font-size: 7px;
    }
}

/* Pricing Page Styles */
.pricing-main {
    padding-top: 100px;
}

.pricing-container {
    display: flex;
    gap: 69px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.pricing-card {
    flex: 0 1 auto;
    min-width: 280px;
    max-width: 400px;
    background-color: #000000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    border-color: #555;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #000000;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 100;
    text-align: center;
    line-height: 1.2;
    z-index: 10;
    transform: translate(30%, -30%);
}

.pricing-title {
    font-size: 32px;
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    color: #ffffff;
    font-size: 14px;
    font-weight: 100;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.3;
}

.pricing-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff00;
    font-size: 20px;
    line-height: 1;
}

.pricing-button {
    margin-top: auto;
    padding: 12px 32px;
    background-color: #2d3a2d;
    border: 1px solid #3a4a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 30px;
}

.pricing-button:hover {
    background-color: #3a4a3a;
    border-color: #4a5a4a;
}

.pricing-button:active {
    transform: scale(0.98);
}

.pricing-button-free {
    background-color: #3a3a3a;
    border-color: #4a4a4a;
}

.pricing-button-free:hover {
    background-color: #4a4a4a;
    border-color: #5a5a5a;
}

.pricing-button-plus {
    background-color: #2d5a2d;
    border-color: #3a7a3a;
}

.pricing-button-plus:hover {
    background-color: #3a7a3a;
    border-color: #4a9a4a;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .pricing-card {
        min-width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }

    .pricing-badge {
        width: 90px;
        height: 90px;
        top: 0;
        right: 0;
        font-size: 13px;
        transform: translate(25%, -25%);
    }

    .pricing-title {
        font-size: 28px;
        margin-bottom: 25px;
        margin-top: 15px;
    }

    .pricing-features li {
        font-size: 13px;
        padding: 7px 0;
        padding-left: 20px;
        line-height: 1.3;
    }

    .pricing-button {
        font-size: 15px;
        padding: 11px 28px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .pricing-main {
        padding-top: 100px;
    }

    .pricing-container {
        gap: 20px;
        padding: 20px 10px;
    }

    .pricing-card {
        padding: 25px 18px;
    }

    .pricing-badge {
        width: 80px;
        height: 80px;
        top: 0;
        right: 0;
        font-size: 12px;
        transform: translate(25%, -25%);
    }

    .pricing-title {
        font-size: 24px;
        margin-bottom: 20px;
        margin-top: 12px;
    }

    .pricing-features li {
        font-size: 12px;
        padding: 6px 0;
        padding-left: 18px;
        line-height: 1.3;
    }

    .pricing-button {
        font-size: 14px;
        padding: 10px 24px;
        margin-top: 20px;
    }
}

