*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:linear-gradient(145deg,#fff,#f5f5fd,#d3d7fe);min-height:100vh}.container{max-width:1200px;margin:0 auto;padding:2rem 1rem}.header{text-align:center;margin-bottom:3rem}.logout-btn{background:linear-gradient(135deg,#f59e0b,#fbbf24);color:#fff;border:none;border-radius:.5rem;padding:.5rem 1rem;font-size:.9rem;font-weight:600;cursor:pointer;transition:all .2s ease;box-shadow:0 2px 4px rgba(245,158,11,.3)}.logout-btn:hover{background:linear-gradient(135deg,#d97706,#f59e0b);transform:translateY(-1px);box-shadow:0 4px 8px rgba(245,158,11,.4)}.title{font-size:2.5rem;font-weight:900;color:#1c00be;margin-bottom:1rem;text-shadow:2px 2px 4px rgba(0,0,0,.1)}.subtitle{color:#374151;font-size:1.4rem;font-weight:600;text-shadow:0 1px 2px rgba(0,0,0,.05);letter-spacing:.3px}.top-panel{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;max-width:800px;margin-left:auto;margin-right:auto}.month-selector{text-align:left}.month-selector select{padding:.5rem 1rem;border:1px solid #d1d5db;border-radius:.5rem;background:#fff;color:#374151;font-weight:500}.players-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-gap:2rem;gap:2rem;max-width:1200px;margin:0 auto}.player-card{display:flex;flex-direction:column;align-items:center;text-align:center;padding:1.5rem;background:#fff;border-radius:50%;width:200px;height:200px;box-shadow:0 4px 6px rgba(0,0,0,.1);transition:transform .2s ease,box-shadow .2s ease;margin:0 auto}.player-card:hover{transform:translateY(-4px);box-shadow:0 8px 25px rgba(0,0,0,.15)}.player-container{display:flex;flex-direction:column;align-items:center;gap:1rem}.avatar{width:120px;height:120px;border-radius:50%;overflow:hidden;margin-bottom:.5rem}.avatar img{width:100%;height:100%;object-fit:cover}.player-name{font-size:1.1rem;font-weight:700;color:#1c00be;margin-bottom:.5rem;text-shadow:0 1px 2px rgba(0,0,0,.1);letter-spacing:.5px}.sandwiches{display:flex;justify-content:center;gap:.25rem;margin-top:.5rem}.sandwich-icon{width:28px;height:28px}.buttons{display:flex;gap:.5rem;margin-top:.5rem}.btn-circle{width:32px;height:32px;border-radius:50%;border:none;background:#403aed;color:#fff;font-size:1rem;font-weight:700;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 4px rgba(124,58,237,.3)}.btn-circle[data-tooltip]:hover:after{content:attr(data-tooltip);position:absolute;bottom:100%;left:50%;transform:translateX(-50%);background:rgba(0,0,0,.8);color:#fff;padding:.5rem;border-radius:.25rem;font-size:.8rem;white-space:nowrap;z-index:1000;margin-bottom:.5rem;opacity:1;transition:opacity .1s ease}.btn-circle[data-tooltip]{position:relative;pointer-events:auto}.btn-circle[data-tooltip]:hover{pointer-events:auto}.data-point{position:absolute;width:12px;height:12px;border-radius:50%;border:2px solid #fff;box-shadow:0 2px 4px rgba(0,0,0,.2);cursor:pointer;transition:transform .2s ease}.data-point:hover{transform:scale(1.2)}.btn-circle:hover:not(:disabled){background:#2e20c7;transform:none;box-shadow:0 2px 4px rgba(124,58,237,.3)}.btn-circle:disabled{background:#d1d5db;cursor:not-allowed;transform:none;box-shadow:none}.btn-circle.btn-locked{background:#e5e7eb;color:#9ca3af;cursor:pointer;border:2px dashed #d1d5db}.btn-circle.btn-locked:hover{background:#d1d5db;color:#6b7280;transform:scale(1.05);box-shadow:0 2px 8px rgba(0,0,0,.1)}.btn-circle.btn-locked:disabled{background:#f3f4f6;color:#d1d5db;cursor:not-allowed;transform:none;box-shadow:none}.btn{padding:.75rem 1.5rem;border:none;border-radius:.5rem;font-weight:600;font-size:1rem;cursor:pointer;transition:all .2s ease;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem}.btn-primary{background:linear-gradient(135deg,#2c36c9,#1f1979);color:#fff}.btn-primary:hover{background:linear-gradient(135deg,#1f1979,#2c36c9);transform:translateY(-2px);box-shadow:0 4px 12px rgba(124,58,237,.4)}.btn-secondary{background:linear-gradient(135deg,#10b981,#34d399);color:#fff}.btn-secondary:hover{background:linear-gradient(135deg,#059669,#10b981);transform:translateY(-2px);box-shadow:0 4px 12px rgba(16,185,129,.4)}.action-buttons{display:flex;justify-content:center;gap:1rem;margin-top:3rem;flex-wrap:wrap}.loading{text-align:center;padding:3rem}.spinner{width:3rem;height:3rem;border:4px solid #e5e7eb;border-top-color:#c9aef8;border-radius:50%;animation:spin 1s linear infinite;margin:0 auto 1rem}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@media (max-width:768px){.container{padding:1rem}.top-panel{flex-direction:column;gap:1rem;align-items:stretch}.month-selector{text-align:center}.month-selector select{width:100%;max-width:300px}.header{margin-bottom:2rem}.title{font-size:1.8rem;line-height:1.2}.subtitle{font-size:1.1rem}.players-grid{grid-template-columns:repeat(2,1fr);gap:1rem;max-width:100%}.player-card{width:140px;height:140px;padding:.75rem}.avatar{width:70px;height:70px}.player-name{font-size:.85rem}.sandwich-icon{width:20px;height:20px}.player-container{gap:.5rem}.btn-circle{width:32px;height:32px;font-size:1rem}.action-buttons{flex-direction:column;align-items:center;gap:.75rem;margin-top:2rem}.action-buttons .btn{width:100%;max-width:280px;justify-content:center}.logout-btn{width:100%;max-width:200px;margin:0 auto}}@media (max-width:480px){.container{padding:.75rem}.title{font-size:1.5rem}.subtitle{font-size:1rem}.players-grid{grid-template-columns:1fr;gap:1.5rem}.player-card{width:160px;height:160px}.avatar{width:80px;height:80px}.player-name{font-size:1rem}.btn-circle{width:36px;height:36px;font-size:1.1rem}.password-modal-large{max-width:95%;min-height:350px}.password-content{padding:1.5rem 0}.password-icon{font-size:3rem}.password-content h3{font-size:1.3rem}.password-content p{font-size:1rem}.password-input-large{padding:1rem;font-size:1.1rem}.password-actions{flex-direction:column;gap:.75rem}.password-actions .btn{width:100%;min-width:auto}}.chart-section{margin-top:4rem;padding:2rem;background:#fff;border-radius:1.5rem;box-shadow:0 4px 6px rgba(0,0,0,.1)}.yearly-chart{max-width:1000px;margin:0 auto}.chart-title{text-align:center;color:#1c00be;font-size:1.8rem;font-weight:700;margin-bottom:2rem}.chart-container{display:flex;height:300px;margin-bottom:2rem;position:relative}.y-axis{display:flex;flex-direction:column;justify-content:space-between;width:40px;padding-right:1rem;font-size:.9rem;color:#6b7280;font-weight:600}.y-label{text-align:right;padding:.25rem 0}.chart-area{flex:1 1;position:relative;border-left:2px solid #e5e7eb;border-bottom:2px solid #e5e7eb}.grid-lines{position:absolute;inset:0;pointer-events:none}.grid-line{position:absolute;left:0;right:0;height:1px;background:#f3f4f6}.player-line{position:absolute;inset:0;pointer-events:none}.line-path{position:relative;height:100%;width:100%}.x-axis{bottom:-30px;left:0;right:0;display:flex;justify-content:space-between}.x-axis,.x-label{position:absolute}.x-label{transform:translateX(-50%);font-size:.8rem;color:#6b7280;font-weight:500}.chart-legend{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;margin-top:3rem}.legend-item{display:flex;align-items:center;gap:.5rem;font-size:.9rem;font-weight:500}.legend-color{width:12px;height:12px;border-radius:50%}.legend-name{color:#374151}@media (max-width:768px){.chart-container{height:250px}.chart-legend{gap:1rem}.legend-item{font-size:.8rem}}@media (max-width:1024px) and (min-width:769px){.players-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}.player-card{width:180px;height:180px}.avatar{width:100px;height:100px}.stats-grid{grid-template-columns:repeat(2,1fr)}}.modal-overlay{position:fixed;inset:0;z-index:50;display:flex;align-items:center;justify-content:center;padding:1rem;background:rgba(0,0,0,.7);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);animation:fadeIn .3s ease-out}.modal-content{position:relative;background:#fff;border-radius:2rem;padding:3rem;max-width:600px;width:100%;text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.3);animation:slideIn .4s ease-out}.modal-close{position:absolute;top:1.5rem;right:1.5rem;width:3rem;height:3rem;border:none;background:#f3f4f6;border-radius:50%;font-size:1.5rem;cursor:pointer;transition:all .2s ease}.modal-close:hover{background:#e5e7eb;transform:scale(1.1)}.modal-header{margin-bottom:2.5rem}.winner-icon{margin-bottom:1.5rem;animation:bounce 2s infinite}.modal-title{font-size:1.8rem;font-weight:700;color:#1c00be;margin-bottom:1.5rem;text-shadow:0 2px 4px rgba(0,0,0,.1);letter-spacing:.5px}.winners-list{display:flex;flex-direction:column;gap:1.5rem;margin-bottom:2.5rem}.winners-list.multiple-winners{flex-direction:row;flex-wrap:wrap;justify-content:center;gap:1rem}.winners-list.multiple-winners .winner-item{flex-direction:column;text-align:center;min-width:140px;padding:1rem}.winners-list.multiple-winners .winner-avatar{width:60px;height:60px;border-width:2px}.winners-list.multiple-winners .winner-name{font-size:1.1rem}.winners-list.multiple-winners .trophy{font-size:1.5rem}.winner-item{display:flex;align-items:center;justify-content:center;gap:1.5rem;padding:1.5rem;background:linear-gradient(135deg,#fef3c7,#fed7aa);border-radius:1.5rem;animation:slideInFromBottom .6s ease-out forwards;opacity:0;transform:translateY(20px);transition:transform .2s ease}.winner-item:hover{transform:translateY(-2px)}.winner-avatar{width:80px;height:80px;border:3px solid #1c00be}.winner-name{font-size:1.4rem}.trophy{font-size:2rem;animation:bounce 1s infinite}.no-winners{padding:2rem;color:#6b7280}.no-winners p{margin-bottom:.5rem}.modal-footer{border-top:1px solid #e5e7eb;padding-top:1rem}.month-info{color:#6b7280;font-weight:700;font-size:1.3rem;text-shadow:0 1px 2px rgba(0,0,0,.05);letter-spacing:.5px}@keyframes slideIn{0%{opacity:0;transform:scale(.8) translateY(20px)}to{opacity:1;transform:scale(1) translateY(0)}}@keyframes slideInFromBottom{to{opacity:1;transform:translateY(0)}}@keyframes bounce{0%,20%,50%,80%,to{transform:translateY(0)}40%{transform:translateY(-10px)}60%{transform:translateY(-5px)}}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));grid-gap:2rem;gap:2rem;max-width:1200px;margin:0 auto}.stat-card{background:#fff;border-radius:1.5rem;padding:2rem;box-shadow:0 4px 6px rgba(0,0,0,.1);transition:transform .2s ease,box-shadow .2s ease}.stat-card:hover{transform:translateY(-4px);box-shadow:0 8px 25px rgba(0,0,0,.15)}.stat-header{text-align:center;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:2px solid #f3f4f6}.stat-month{font-size:1.8rem;font-weight:800;color:#1c00be;margin-bottom:.5rem;text-shadow:0 2px 4px rgba(0,0,0,.1);letter-spacing:.8px}.stat-year{color:#6b7280;font-weight:600;font-size:1.1rem;letter-spacing:.3px}.no-winner{text-align:center;padding:2rem;color:#6b7280}.winners-grid{display:flex;flex-direction:column;gap:1rem}.winner-card{display:flex;align-items:center;gap:1rem;padding:1rem;background:linear-gradient(135deg,#fef3c7,#fed7aa);border-radius:1rem;transition:transform .2s ease}.winner-card:hover{transform:scale(1.02)}.winner-avatar{width:60px;height:60px;border-radius:50%;overflow:hidden;border:2px solid #1c00be;flex-shrink:0}.winner-avatar img{width:100%;height:100%;object-fit:cover}.winner-name{flex:1 1;font-weight:700;font-size:1.2rem;color:#1c00be;letter-spacing:.3px}.winner-trophy{font-size:1.2rem;animation:bounce 2s infinite}.password-modal-overlay{z-index:1000}.password-modal-large{max-width:500px;width:90%;min-height:400px;display:flex;flex-direction:column}.password-modal-large .modal-header h2{color:#1c00be;font-size:1.8rem;margin:0;text-align:center}.password-content{flex:1 1;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:1rem 0}.password-icon{font-size:4rem;margin-bottom:1.5rem;animation:pulse 2s infinite}.password-content h3{color:#1c00be;font-size:1.5rem;margin:0 0 1rem;font-weight:700}.password-content p{color:#6b7280;margin-bottom:2rem;font-size:1.1rem;max-width:300px}.password-input-group{margin-bottom:2rem;width:100%;max-width:350px}.password-input-large{width:100%;padding:1.2rem;border:3px solid #e5e7eb;border-radius:1rem;font-size:1.2rem;background:#fff;transition:all .3s ease;box-sizing:border-box;text-align:center;font-weight:500}.password-input-large:focus{outline:none;border-color:#c9aef8;box-shadow:0 0 0 4px rgba(201,174,248,.15);transform:scale(1.02)}.password-input-large::placeholder{color:#9ca3af}.error-message{color:#ef4444;font-size:1rem;margin-top:.75rem;text-align:center;font-weight:500;padding:.5rem;background:#fef2f2;border-radius:.5rem;border:1px solid #fecaca}.password-actions{display:flex;gap:1.5rem;justify-content:center}.password-actions .btn{min-width:120px;padding:.75rem 1.5rem;font-size:1.1rem}@keyframes pulse{0%,to{transform:scale(1)}50%{transform:scale(1.1)}}